Bootstrap

This commit is contained in:
Marc Rousavy
2021-02-19 16:07:53 +01:00
parent c1535460e6
commit c04a4b72be
95 changed files with 34639 additions and 2 deletions

9
src/TemporaryFile.ts Normal file
View 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;
}>;