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