import { CrudListCallProps, GenericObject } from "../../api.types"; interface CustomStorageAPIMethods { getFields(): Promise; addFolder(id: string, data: GenericObject): Promise; get(id: string): Promise; getChildren(id: string, options: CrudListCallProps): Promise; getForApp(): Promise; getList(options: CrudListCallProps): Promise; getTypes(): Promise; rename(id: string, newName: string): Promise; uploadFile(id: string, fileContent: any, data: GenericObject, generateUniqueName?: boolean, rights?: GenericObject[]): Promise; } export interface StorageApiType extends CustomStorageAPIMethods { } export {};