jqwidgets-ng
Version:
[](https://jqwidgets.com/license/)
9 lines (8 loc) • 400 B
TypeScript
export interface Schema {
/** Name of the project. */
project: string;
/** Name of pre-built theme to install. */
theme: 'default' | 'red' | 'green' | 'orange' | 'pink' | 'purple' | 'dark' | 'dark-red' | 'dark-green' | 'dark-orange' | 'dark-pink' | 'dark-purple' | 'dark-turquoise' | 'custom';
/** Whether to set up global typography styles. */
typography: boolean;
}