Files
skills-here-run-place/node_modules/astro/dist/preferences/defaults.d.ts
Alejandro Martinez f09af719cf Initial commit
2026-02-12 02:04:10 +01:00

17 lines
513 B
TypeScript

export declare const DEFAULT_PREFERENCES: {
devToolbar: {
/** Specifies whether the user has the Dev Overlay enabled */
enabled: boolean;
};
checkUpdates: {
/** Specifies whether the user has the update check enabled */
enabled: boolean;
};
_variables: {
/** Time since last update check */
lastUpdateCheck: number;
};
};
export type Preferences = typeof DEFAULT_PREFERENCES;
export type PublicPreferences = Omit<Preferences, '_variables'>;