astro-ghostcms/.pnpm-store/v3/files/8a/826834135525441c68ce8bb2997...

17 lines
428 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
export interface Settings {
disableAppNotification: boolean;
verbose: boolean;
}
export declare const defaultSettings: {
disableAppNotification: false;
verbose: false;
};
export declare const settings: {
readonly config: Settings;
updateSetting: (key: keyof Settings, value: boolean) => void;
logger: {
log: (message: string) => void;
verboseLog: (message: string) => void;
};
};