21 lines
382 B
TypeScript
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;
|
|
}
|