7 lines
124 B
TypeScript
7 lines
124 B
TypeScript
export type CifsAddParams = {
|
|
hostname: string;
|
|
path: string;
|
|
username: string;
|
|
password: string | null;
|
|
};
|