UNPKG

@mikezimm/fps-core-v7

Version:

Library of reusable core interfaces, types and constants migrated from fps-library-v2

14 lines 637 B
/** * 2024-09-07: Migrated from the same folder in fps-library-v2/common/commandStyles/... */ import { IPropertyPaneDropdownOptionFPS } from "../../types/fps-common/AudienceInterfaces"; export type ISiteThemeChoices = 'light' | 'dark' | 'primary'; export interface ISiteThemes { light: string; dark: string; primary: string; } export declare const bannerThemeChoicesWSiteTheme: IPropertyPaneDropdownOptionFPS[]; export declare function getThemeClass(choice: string, themes: ISiteThemes): string; export declare function check4SiteTheme(choice: string): boolean; //# sourceMappingURL=ISiteThemeChoices.d.ts.map