import { DirectusFile } from "./file.js"; import { DirectusRole } from "./role.js"; import { DirectusPolicy } from "./policy.js"; import { MergeCoreCollection } from "../types/schema.js"; //#region src/schema/user.d.ts /** * directus_users type */ type DirectusUser = MergeCoreCollection | string | null; language: string | null; theme: string | null; tfa_secret: string | null; status: string; role: DirectusRole | string | null; token: string | null; last_access: "datetime" | null; last_page: string | null; provider: string; external_identifier: string | null; auth_data: Record | null; email_notifications: boolean | null; appearance: string | null; theme_dark: string | null; theme_light: string | null; theme_light_overrides: Record | null; theme_dark_overrides: Record | null; policies: string[] | DirectusPolicy[]; }>; //#endregion export { DirectusUser }; //# sourceMappingURL=user.d.ts.map