@progress/kendo-vue-charts
Version:
44 lines (43 loc) • 1.39 kB
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { PropType } from 'vue';
/**
* @hidden
*/
export interface CollectionConfigurationProps {
chartKey: string;
parentStore?: any;
parentKey?: string;
}
/**
* @hidden
*/
declare const CollectionConfiguration: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
chartKey: PropType<string>;
parentKey: PropType<string>;
parentStore: PropType<any>;
}>, {}, {
child: {
collection: any[];
};
}, {}, {
addChild(item: object): void;
removeChild(item: any): void;
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
chartKey: PropType<string>;
parentKey: PropType<string>;
parentStore: PropType<any>;
}>> & Readonly<{}>, {}, {}, {}, {}, string, () => {
childOption: boolean;
chartCollection: any;
parentKey: any;
child: any;
addChild: any;
removeChild: any;
}, true, {}, any>;
export { CollectionConfiguration };