From 57375bd902d19b2d07b743e8711b0bb905f96539 Mon Sep 17 00:00:00 2001 From: Andreas Date: Mon, 24 Jun 2024 03:00:49 +0200 Subject: [PATCH] export additional types --- src/model/Post.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/model/Post.ts b/src/model/Post.ts index 3c11a0c..8702b0c 100644 --- a/src/model/Post.ts +++ b/src/model/Post.ts @@ -9,9 +9,9 @@ import { Attachment } from "./Attachment"; import { Bucket } from "./Bucket"; import { UUID } from "crypto"; -type PostAttributes = InferAttributes; +export type PostAttributes = InferAttributes; -type PostCreationAttributes = InferCreationAttributes; +export type PostCreationAttributes = InferCreationAttributes; export type PostAttributesWithBuckets = PostAttributes & { buckets:Attributes[]