Files
crawler-plugin/frontend-vue/src/shared/utils/bootstrap.ts
2026-03-19 13:15:47 +08:00

17 lines
284 B
TypeScript

export interface BootstrapState {
username?: string
userId?: string
isAdmin?: boolean
error?: string
}
declare global {
interface Window {
__BOOTSTRAP__?: BootstrapState
}
}
export function getBootstrapState(): BootstrapState {
return window.__BOOTSTRAP__ ?? {}
}