Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
connectkit / build / types.d.ts
Size: Mime:
export declare type Theme = 'auto' | 'web95' | 'retro' | 'soft' | 'midnight' | 'minimal' | 'rounded';
export declare type Mode = 'light' | 'dark' | 'auto';
export declare type CustomTheme = any;
export declare type Languages = 'en';
export declare type All = {
    theme?: Theme;
    mode?: Mode;
    customTheme?: CustomTheme;
    lang?: Languages;
};