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() {
// TODO
throw new Error('moving a directory is not yet implemented')
}
/**
* creates a file within this directory
* @param relativePathArg
*/
public async createFile(relativePathArg) {
let completeFilePath: string = '';
public async createEmptyFile(relativePathArg: string) {
const emtpyFile = await File.createFileFromString(this, relativePathArg, '');
}
// file operations

View File

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