@corbado/types
Version:
Comprehensive TypeScript type definitions to seamlessly integrate with Corbado. Designed to empower developers with strong typing for enhanced code quality and autocompletion in supported IDEs. Perfect for ensuring type safety and consistency across JavaS
12 lines • 310 B
TypeScript
/**
* Interface for custom themes.
*
* @interface CustomThemes
* @property {string} light - The color scheme for the light theme.
* @property {string} dark - The color scheme for the dark theme.
*/
export interface CustomThemes {
light: string;
dark: string;
}
//# sourceMappingURL=theme.d.ts.map