fix(core): update

This commit is contained in:
Philipp Kunz 2020-10-06 00:57:47 +00:00
parent 0a95ae6284
commit 93702dca78

View File

@ -63,24 +63,28 @@ export class Smartfile extends plugins.smartjson.Smartjson {
public path: string;
/**
*
* a parsed path
*/
@plugins.smartjson.foldDec()
public parsedPath: plugins.path.ParsedPath;
/**
* the content of the file as Buffer
*/
@plugins.smartjson.foldDec()
public contentBuffer: Buffer;
/**
* The current working directory of the file
* Note:this is similar to gulp and different from native node path base
*/
@plugins.smartjson.foldDec()
public base: string;
/**
* sync the file with disk
*/
@plugins.smartjson.foldDec()
public sync: boolean;
/**