UNPKG

alapa

Version:

A cutting-edge web development framework designed to revolutionize the way developers build modern web applications.

18 lines (17 loc) 528 B
export interface AzureActiveDirectoryServicePrincipalSecret { type: "azure-active-directory-service-principal-secret"; options: { /** * Application (`client`) ID from your registered Azure application */ clientId: string; /** * The created `client secret` for this registered Azure application */ clientSecret: string; /** * Directory (`tenant`) ID from your registered Azure application */ tenantId: string; }; }