Bootstrap
This commit is contained in:
9
src/TemporaryFile.ts
Normal file
9
src/TemporaryFile.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
/**
|
||||
* Represents a temporary file in the local filesystem.
|
||||
*/
|
||||
export type TemporaryFile = Readonly<{
|
||||
/**
|
||||
* The path of the file. This file might get deleted once the app closes because it lives in the temp directory.
|
||||
*/
|
||||
path: string;
|
||||
}>;
|
||||
Reference in New Issue
Block a user