react-native-vision-camera/src/TemporaryFile.ts
Marc Rousavy c04a4b72be Bootstrap
2021-02-19 16:07:53 +01:00

10 lines
250 B
TypeScript

/**
* 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;
}>;