diff --git a/src/TemporaryFile.ts b/src/TemporaryFile.ts index 9958fa3..00ace14 100644 --- a/src/TemporaryFile.ts +++ b/src/TemporaryFile.ts @@ -3,7 +3,11 @@ */ export interface TemporaryFile { /** - * The path of the file. This file might get deleted once the app closes because it lives in the temp directory. + * The path of the file. + * + * * **Note:** If you want to consume this file (e.g. for displaying it in an `` component), you might have to add the `file://` prefix. + * + * * **Note:** This file might get deleted once the app closes because it lives in the temp directory. */ path: string; }