6 lines
105 B
TypeScript
6 lines
105 B
TypeScript
export type CreateScanStation = {
|
|
description?: string;
|
|
track: number;
|
|
enabled?: boolean;
|
|
};
|