UNPKG

typeorm

Version:

Data-Mapper ORM for TypeScript and ES2021+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, MongoDB databases.

13 lines (12 loc) 409 B
export interface AzureActiveDirectoryDefaultAuthentication { /** * This uses DefaultAzureCredential from @azure/identity to try multiple methods of authentication */ type: "azure-active-directory-default"; options: { /** * The clientId of the user you want to log in with, mapped to the managedIdentityClientId in tedious */ clientId?: string; }; }