Files
opencrm/backend/dist/services/appSetting.service.d.ts
T
Stefan Hacker 32a7dc74e1 first commit
2026-01-29 01:16:54 +01:00

6 lines
424 B
TypeScript

export declare function getSetting(key: string): Promise<string | null>;
export declare function getSettingBool(key: string): Promise<boolean>;
export declare function setSetting(key: string, value: string): Promise<void>;
export declare function getAllSettings(): Promise<Record<string, string>>;
export declare function getPublicSettings(): Promise<Record<string, string>>;
//# sourceMappingURL=appSetting.service.d.ts.map