@progress/kendo-vue-charts
Version:
49 lines (48 loc) • 1.44 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 ConfigurationComponentProps {
chartKey?: string;
chartCollectionIdxKey?: string;
parentStore?: any;
config: object;
}
/**
* @hidden
*/
declare const Configuration: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
chartKey: PropType<string>;
config: {
type: PropType<object>;
default: () => {};
};
}>, {}, {
childState: {};
index: any;
}, {}, {
onDestroyed(): void;
addChildOption(newChildState: any): void;
removeChildOption(): void;
dispatch(this: any): void;
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
chartKey: PropType<string>;
config: {
type: PropType<object>;
default: () => {};
};
}>> & Readonly<{}>, {
config: object;
}, {}, {}, {}, string, () => {
addChild: any;
removeChild: any;
childOption: boolean;
}, true, {}, any>;
export { Configuration };