jqwidgets-ng
Version:
[](https://jqwidgets.com/license/)
14 lines (9 loc) • 408 B
text/typescript
import {Schema as ComponentSchema} from '@schematics/angular/component/schema';
export interface Schema extends ComponentSchema {
/** Name of the project. */
project: string;
/** Name of pre-built theme to install. */
theme: 'base' | 'material' | 'material-green' | 'material-purple' | 'light' | 'dark';
/** Whether to set up global typography styles. */
typography: boolean;
}