9 lines
215 B
TypeScript
9 lines
215 B
TypeScript
import type { GatewayId } from './GatewayId';
|
|
export type WifiInfo = {
|
|
enabled: boolean;
|
|
interface: GatewayId | null;
|
|
ssids: Array<string>;
|
|
selected: string | null;
|
|
lastRegion: string | null;
|
|
};
|