@progress/kendo-angular-diagrams
Version:
Kendo UI Angular diagrams component
26 lines (25 loc) • 998 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { DiagramComponent } from "./diagram.component";
/**
* Represents the utility array that that contains all `Diagram`-related components and directives.
*
* Use `KENDO_DIAGRAM` to import all Diagram components and directives at once.
*
* @example
* ```typescript
* import { Component } from '@angular/core';
* import { KENDO_DIAGRAM } from '@progress/kendo-angular-diagrams';
*
* @Component({
* selector: 'my-diagram-app',
* standalone: true,
* imports: [KENDO_DIAGRAM],
* template: `...`
* })
* export class DiagramAppComponent {}
* ```
*/
export declare const KENDO_DIAGRAM: readonly [typeof DiagramComponent];