forked from olcxjas-softworks/LarpixClient
Add capacitorjs runtime
This commit is contained in:
parent
d0ece489ee
commit
f90c0e6c40
8362 changed files with 1502407 additions and 1 deletions
16
node_modules/rimraf/dist/commonjs/fs.d.ts
generated
vendored
Normal file
16
node_modules/rimraf/dist/commonjs/fs.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
import fs, { Dirent } from 'fs';
|
||||
import fsPromises from 'fs/promises';
|
||||
export { chmodSync, mkdirSync, renameSync, rmdirSync, rmSync, statSync, lstatSync, unlinkSync, } from 'fs';
|
||||
export declare const readdirSync: (path: fs.PathLike) => Dirent[];
|
||||
export declare const promises: {
|
||||
chmod: typeof fsPromises.chmod;
|
||||
mkdir: typeof fsPromises.mkdir;
|
||||
readdir: (path: fs.PathLike) => Promise<fs.Dirent<string>[]>;
|
||||
rename: typeof fsPromises.rename;
|
||||
rm: typeof fsPromises.rm;
|
||||
rmdir: typeof fsPromises.rmdir;
|
||||
stat: typeof fsPromises.stat;
|
||||
lstat: typeof fsPromises.lstat;
|
||||
unlink: typeof fsPromises.unlink;
|
||||
};
|
||||
//# sourceMappingURL=fs.d.ts.map
|
||||
Loading…
Add table
Add a link
Reference in a new issue