Adds types for Session and Secret

This commit is contained in:
2025-05-28 14:22:27 -07:00
parent f61ebef59a
commit 03d0d7d1d2

View File

@@ -8,3 +8,14 @@ export type Document = {
campaign: Campaign; campaign: Campaign;
data: {}; data: {};
}; };
export type Session = Document & {
strongStart: string;
};
export type ISO8601Date = string & { __type: "iso8601date" };
export type Secret = Document & {
text: string;
discoveredOn: ISO8601Date;
};