import { AuthView, SettingsView } from '../../../compat/better-auth/core.js'; /** * Built-in auth views plus plugin-contributed auth views such as `"magicLink"`. * * The `string & {}` arm keeps autocomplete for known built-in views while * still allowing plugin IDs that are registered via runtime composition. */ export type AuthUiView = AuthView | (string & {}); /** * Built-in settings views plus plugin-contributed settings views such as * `"workspace"` or `"organizations"`. * * The `string & {}` arm keeps autocomplete for known built-in views while * still allowing plugin IDs that are registered via runtime composition. */ export type AuthUiSettingsView = SettingsView | (string & {});