@progress/kendo-angular-schematics
Version:
Kendo UI Schematics for Angular
26 lines (25 loc) • 884 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
export interface KendoAngularSchedulerSchema {
name: string;
path?: string;
project?: string;
module?: string;
selector?: string;
prefix: string;
style?: "css" | "scss" | "sass" | "less" | "none";
flat?: boolean;
type?: string;
displayBlock?: boolean;
inlineStyle: boolean;
inlineTemplate: boolean;
skipTests: boolean;
dayView: boolean;
weekView: boolean;
monthView: boolean;
timelineView: boolean;
agendaView: boolean;
standalone: undefined | boolean;
}