alapa
Version:
A cutting-edge web development framework designed to revolutionize the way developers build modern web applications.
20 lines (19 loc) • 519 B
TypeScript
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;
};
}