8 lines
139 B
TypeScript
8 lines
139 B
TypeScript
export declare type ScanStation = {
|
|
id: number;
|
|
description?: string;
|
|
track: string;
|
|
key: string;
|
|
enabled: boolean;
|
|
};
|