UNPKG

@syncfusion/ej2-angular-diagrams

Version:

Feature-rich diagram control to create diagrams like flow charts, organizational charts, mind maps, and BPMN diagrams. Its rich feature set includes built-in shapes, editing, serializing, exporting, printing, overview, data binding, and automatic layouts.

31 lines (22 loc) 631 B
export interface OptionsSchema { // Whether to skip package.json install. skipPackageJson: boolean; // Used to specify required module names modules: string; // Used to specify custom module path modulePath: string; // Used to specify theme name theme: 'material' | 'fabric' | 'bootstrap' | 'highcontrast'; // Name of the project to target. project?: string; } export interface LibOptionsSchema { // Package name pkgName: string; // Package version pkgVer: string; // Library base module name moduleName: string; // Theme version themeVer: string; }