export interface Account { type: "user" | "organization"; id: string; name: string; department?: string; departmentName?: string; [k: string]: unknown; } /** * This interface was referenced by `Account`'s JSON-Schema * via the `definition` "accountKeys". */ export interface AccountKeys { type: "user" | "organization"; id: string; department?: string; } //# sourceMappingURL=types.d.ts.map