dynamicsmobile
Version:
Allows development of off-line mobile and web business apps over the Dynamics Mobile platform. More info on https://www.dynamicsmobile.com
12 lines (11 loc) • 519 B
TypeScript
export declare class FileBackendService {
private iocInstances;
constructor(iocInstances: any);
getDirFiles(folder: string): Promise<string[]>;
fileWrite(fileName: string, fileContent: string | ArrayBuffer | File, contentType?: string): Promise<void>;
fileRead(fileName: string): Promise<any>;
fileDelete(fileName: string): Promise<void>;
fileExist(fileName: string): Promise<boolean>;
getFileNativeUri(fileName: string): Promise<string>;
htmlToPdf(html: string): Promise<string>;
}