12 lines
190 B
TypeScript
12 lines
190 B
TypeScript
// SPDX-License-Identifier: MIT
|
|
|
|
export type AuthConfig = {
|
|
tenantId: string;
|
|
clientId: string;
|
|
};
|
|
|
|
export type Config = {
|
|
activeAccountUpn: string | undefined;
|
|
authMode: string;
|
|
};
|