From 10b82772ed657ccaeb4d21b108da3d99c2ad44c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joa=CC=83o=20Leite?= Date: Mon, 13 Mar 2023 16:02:27 +0000 Subject: [PATCH] added "File" Prop Type to theatric project --- packages/theatric/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/theatric/src/index.ts b/packages/theatric/src/index.ts index 95d2036..b66c5b9 100644 --- a/packages/theatric/src/index.ts +++ b/packages/theatric/src/index.ts @@ -59,7 +59,7 @@ export function initialize(config: IProjectConfig): Promise { } export function getAssetUrl(asset: { - type: 'image' + type: 'image' | 'file' id: string | undefined }): string | undefined { if (!_project) {