nuxt-live-editor
Version:
My new Nuxt module
24 lines (23 loc) • 467 B
TypeScript
export interface DataLiveEditor {
option_key: string;
option_value: string;
option_group?: string;
language?: string;
id: number | string;
}
export interface DataLiveEditorParse {
[key: string]: string;
}
export interface PreviewItem {
key: string;
old: string;
new: string;
}
export interface TypeIcons {
name: string;
svg: string;
}
export interface DataSave {
update?: DataLiveEditor;
create?: DataLiveEditor;
}