@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
16 lines (15 loc) • 396 B
TypeScript
import * as tsx from "vue-tsx-support";
export default class TestChart extends tsx.Component<{}, {}> {
created(): void;
mounted(): void;
chartData: {
labels: string[];
datasets: {
label: string;
backgroundColor: string;
borderColor: string;
data: number[];
}[];
};
render(): VueTsxSupport.JSX.Element;
}