UNPKG

erfan-flmngr-server-fixed

Version:

> Node.js Backend for Flmngr file manager

21 lines (20 loc) 354 B
export interface IFileListDataItem { p: string; s: string; t: string; h: string; w: string; } export interface IDirListDataItem { d: string; f: string; p: string; } export interface IMessage { code: string; args?: number[]; } export interface IResponse<T> { data: T; error: IMessage; }