6 lines
225 B
TypeScript
6 lines
225 B
TypeScript
export interface GlobalState {
|
|
defaultTimezone: string;
|
|
}
|
|
export declare function setGlobalState(state: GlobalState): void;
|
|
export declare function getGlobalState(): GlobalState;
|
|
//# sourceMappingURL=global-state.d.ts.map
|