@wfrog/vc
Version:
vue3 组件库 vc
21 lines (20 loc) • 854 B
TypeScript
import { ITinymceProps } from './tinymce';
import { default as config } from './config';
declare function setContent(val: string): void;
declare function getContent(): void;
declare const _default: import('vue').DefineComponent<ITinymceProps, {
setContent: typeof setContent;
getContent: typeof getContent;
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
"update:modelValue": (...args: any[]) => void;
}, string, import('vue').PublicProps, Readonly<ITinymceProps> & Readonly<{
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
}>, {
width: string;
id: string;
modelValue: string;
height: string;
httpRequest: any;
config: keyof typeof config;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
export default _default;