Files
recap/node_modules/@start9labs/start-sdk/base/lib/osBindings/WifiInfo.d.ts
T

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;
};