6 lines
141 B
TypeScript
6 lines
141 B
TypeScript
export interface OAuth2CallbackLoginRequest {
|
|
readonly password?: string;
|
|
readonly passcode?: string;
|
|
readonly token?: string;
|
|
}
|