mirror of
https://github.com/Buriburizaem0n/admin-frontend-domain.git
synced 2026-09-19 09:40:13 +00:00
* update oauth2 * i18n * fix validation * chore: auto-fix linting and formatting issues --------- Co-authored-by: uubulb <uubulb@users.noreply.github.com>
9 lines
223 B
TypeScript
9 lines
223 B
TypeScript
import { ModelProfile } from "@/types"
|
|
|
|
export interface AuthContextProps {
|
|
profile: ModelProfile | undefined
|
|
login: (username: string, password: string) => void
|
|
loginOauth2: () => void
|
|
logout: () => void
|
|
}
|