UNPKG

typeorm

Version:

Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.

11 lines (10 loc) 296 B
export interface AzureActiveDirectoryAccessTokenAuthentication { type: "azure-active-directory-access-token"; options: { /** * A user need to provide `token` which they retrived else where * to forming the connection. */ token: string; }; }