8 lines
188 B
TypeScript
8 lines
188 B
TypeScript
import type { EncryptedWire } from './EncryptedWire';
|
|
export type VerifyCifsParams = {
|
|
hostname: string;
|
|
path: string;
|
|
username: string;
|
|
password: EncryptedWire | null;
|
|
};
|