UNPKG

azure-functions-auth

Version:

Authentication and Authorization for Azure Functions (with OAuth 2.0 and JWT)

16 lines (13 loc) 314 B
declare function createValidateJwt( options: createValidateJwt.AuthOptions ): Function; export = createValidateJwt; declare namespace createValidateJwt { export interface AuthOptions { clientId: string; clientSecret: string; domain: string; algorithms: string[]; audience?: string; } }