UNPKG

typeorm

Version:

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

20 lines (19 loc) 519 B
export interface NtlmAuthentication { type: "ntlm"; options: { /** * User name from your windows account. */ userName: string; /** * Password from your windows account. */ password: string; /** * Once you set domain for ntlm authentication type, driver will connect to SQL Server using domain login. * * This is necessary for forming a connection using ntlm type */ domain: string; }; }