Skip to content

GlobalShokupanState

Defined in: src/util/types.ts:367

Global state interface for module augmentation. Users can declare their app’s global state shape once:

declare module "shokupan" {
interface GlobalShokupanState {
user: { id: string; name: string };
}
}

[key: string]: any