18 lines
446 B
TypeScript
18 lines
446 B
TypeScript
import { SuperComponent, ComponentsOptionsType } from '../../../../components/common/src/index';
|
|
export default class ChatMarkdownTable extends SuperComponent {
|
|
options: ComponentsOptionsType;
|
|
properties: {
|
|
node: {
|
|
type: ObjectConstructor;
|
|
value: {};
|
|
};
|
|
};
|
|
data: {
|
|
classPrefix: string;
|
|
};
|
|
methods: {
|
|
nodeClick(e: any): void;
|
|
getCareMarkdown(): any;
|
|
};
|
|
}
|