UNPKG

nextcloud-node-client

Version:

Nextcloud client API for node.js TypeScript applications

12 lines (11 loc) 292 B
export interface IFileNameFormats { absolute: string; relative: string; } export default class FileSystemFolder { private name; constructor(name: string); getName(): IFileNameFormats; getFileNames(): Promise<IFileNameFormats[]>; private getFileNamesRecursivley; }