Spaces:
deepak191z
/
Runtime error

RAI / src /interfaces /editor.ts
deepak191z's picture
Upload 84 files
229b3b8 verified
raw
history blame contribute delete
597 Bytes
export interface IFont {
id: string;
family: string;
fullName: string;
postScriptName: string;
preview: string;
style: string;
url: string;
category: string;
createdAt: string;
updatedAt: string;
userId: string | null;
}
export interface ICompactFont {
family: string;
styles: IFont[];
default: IFont;
name?: string;
}
export interface IDataState {
fonts: IFont[];
compactFonts: ICompactFont[];
setFonts: (fonts: IFont[]) => void;
setCompactFonts: (compactFonts: ICompactFont[]) => void;
}
export type IPropertyType = 'textContent' | 'fontSize' | 'color';