UNPKG

@becomes/cms

Version:

Simple CMS for building APIs.

25 lines (24 loc) 441 B
export declare enum FolderTreeType { DIR = "DIR", IMG = "IMG", VID = "VID", TXT = "TXT", GIF = "GIF", OTH = "OTH", PDF = "PDF", CODE = "CODE", JS = "JS", HTML = "HTML", CSS = "CSS", JAVA = "JAVA", PHP = "PHP", FONT = "FONT" } export interface FolderTree { id: string; name: string; path: string; type: FolderTreeType; children?: FolderTree[]; state: boolean; }