Files
sk-az-tools/src/types.ts

12 lines
190 B
TypeScript

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