Adds collections and types

This commit is contained in:
2025-05-27 18:07:26 -07:00
parent b96fe1371e
commit f61ebef59a
5 changed files with 260 additions and 0 deletions

10
src/lib/types.ts Normal file
View File

@@ -0,0 +1,10 @@
export type Campaign = {
id: string;
name: string;
};
export type Document = {
id: string;
campaign: Campaign;
data: {};
};