Files
WifiShare/types.ts
2026-02-06 15:16:49 +09:00

21 lines
382 B
TypeScript

export interface WiFiHotspot {
id: string;
name: string;
password?: string;
ssid: string;
lat: number;
lng: number;
securityType: 'WPA2' | 'WPA3' | 'Open' | 'Other';
iconType: 'cafe' | 'restaurant' | 'general';
description?: string;
addedBy: string;
createdAt: number;
isPublic: boolean;
}
export interface SearchResult {
title: string;
uri: string;
}