@bexis2/bexis2-core-ui
Version:
Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).
33 lines (32 loc) • 843 B
TypeScript
import { SvelteComponent } from "svelte";
declare const __propDef: {
props: {
id: string;
title?: string;
initialValue?: string;
value?: string;
language?: string;
dark?: boolean;
toggle?: boolean;
actions?: boolean;
isValid?: boolean;
styles?: any;
};
events: {
cancel: CustomEvent<any>;
save: CustomEvent<any>;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {
id: string;
};
};
};
export type CodeEditorProps = typeof __propDef.props;
export type CodeEditorEvents = typeof __propDef.events;
export type CodeEditorSlots = typeof __propDef.slots;
export default class CodeEditor extends SvelteComponent<CodeEditorProps, CodeEditorEvents, CodeEditorSlots> {
}
export {};