forked from olcxjas-softworks/LarpixClient
Update gitignore (sorry)
This commit is contained in:
parent
a8f8c4d7ad
commit
cca8b02fea
6604 changed files with 1219661 additions and 4 deletions
19
electron/node_modules/temp-file/out/main.d.ts
generated
vendored
Normal file
19
electron/node_modules/temp-file/out/main.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
export declare function getTempName(prefix?: string | null | undefined): string;
|
||||
export interface GetTempFileOptions {
|
||||
prefix?: string | null;
|
||||
suffix?: string | null;
|
||||
disposer?: ((file: string) => Promise<void>) | null;
|
||||
}
|
||||
export declare class TmpDir {
|
||||
private readonly debugName;
|
||||
private tempFiles;
|
||||
private registered;
|
||||
constructor(debugName?: string);
|
||||
get rootTempDir(): Promise<string>;
|
||||
getTempDir(options?: GetTempFileOptions): Promise<string>;
|
||||
createTempDir(options?: GetTempFileOptions): Promise<string>;
|
||||
getTempFile(options?: GetTempFileOptions, isDir?: boolean): Promise<string>;
|
||||
cleanupSync(): void;
|
||||
cleanup(): Promise<any>;
|
||||
toString(): string;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue