diff --git a/core/type/src/photo.ts b/core/type/src/photo.ts new file mode 100644 index 000000000..9a737ca87 --- /dev/null +++ b/core/type/src/photo.ts @@ -0,0 +1,8 @@ +import {AlwatrDocumentObject} from './storage.js'; + +export type Photo = AlwatrDocumentObject & { + fileName: string; + meta: { + description: string; + }; +}