@slesaad/veda-content-editor
Version:
VEDA Content Editor - A React-based MDX editor component
15 lines • 410 B
TypeScript
export interface DatasetMetadata {
id: string;
name: string;
description?: string;
layers?: any[];
[key: string]: any;
}
export interface VEDAContentEditorProps {
allAvailableDatasets?: any[];
initialContent?: string;
onChange?: (content: string) => void;
className?: string;
}
export type { EditorPageProps } from '../VEDAContentEditor';
//# sourceMappingURL=types.d.ts.map