mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-04 11:10:05 +00:00
9 lines
148 B
TypeScript
9 lines
148 B
TypeScript
export interface LoginOptions {
|
|
onLoggedOut?: () => Promise<boolean>
|
|
}
|
|
|
|
export interface LoginResult {
|
|
isLoggedIn: boolean
|
|
userName: string
|
|
}
|