fix(core): update

This commit is contained in:
Philipp Kunz 2021-06-02 11:14:24 +02:00
parent 4bb6e2ef51
commit 346269d399
3 changed files with 13185 additions and 21 deletions

13199
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -169,14 +169,15 @@ export class Directory {
*/ */
public async move() { public async move() {
// TODO // TODO
throw new Error('moving a directory is not yet implemented')
} }
/** /**
* creates a file within this directory * creates a file within this directory
* @param relativePathArg * @param relativePathArg
*/ */
public async createFile(relativePathArg) { public async createEmptyFile(relativePathArg: string) {
let completeFilePath: string = ''; const emtpyFile = await File.createFileFromString(this, relativePathArg, '');
} }
// file operations // file operations

View File

@ -76,8 +76,8 @@ export class File {
} }
public async streamContent() { public async streamContent() {
throw new Error('not yet implemented');
// TODO // TODO
throw new Error('not yet implemented');
} }
/** /**