graphdb-workbench
Version:
The web application for GraphDB APIs
28 lines (27 loc) • 637 B
TypeScript
export declare enum ThemeMode {
'light' = "light",
'dark' = "dark"
}
/**
* Interface for legacy settings format
*/
export interface LegacySettings {
theme: string;
mode: string;
}
/**
* Internal application settings model representing configurations that define the behavior and appearance of the
* application.
*/
export declare class ApplicationSettings {
/**
* The theme of the application.
*/
theme: string;
/**
* The theme mode of the application (e.g., light or dark).
*/
themeMode: ThemeMode;
constructor(data?: Partial<ApplicationSettings>);
toString(): string;
}