initial commit

This commit is contained in:
2026-02-06 15:16:49 +09:00
commit 1c72c185ab
12 changed files with 837 additions and 0 deletions

20
types.ts Normal file
View File

@@ -0,0 +1,20 @@
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;
}