mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-03 10:40:06 +00:00
16 lines
294 B
TypeScript
16 lines
294 B
TypeScript
export interface LoginOptions {
|
|
onLoggedOut?: () => Promise<boolean>
|
|
}
|
|
|
|
export interface LoginResult {
|
|
isLoggedIn: boolean
|
|
userName: string
|
|
userLongName: string
|
|
}
|
|
export interface LoginResultInternal {
|
|
isLoggedIn: boolean
|
|
userName: string
|
|
userLongName: string
|
|
loginForm?: any
|
|
}
|