6 lines
96 B
TypeScript
6 lines
96 B
TypeScript
export type AddDeviceParams = {
|
|
subnet: string;
|
|
name: string;
|
|
ip: string | null;
|
|
};
|