Files
sigpro-editor/index.d.ts
2026-05-09 13:17:27 +02:00

7 lines
180 B
TypeScript

export interface EditorProps {
value?: string | (() => string);
class?: string;
onchange?: (val: string) => void;
}
export const Editor: (props: EditorProps) => HTMLElement;