initial commit
This commit is contained in:
20
types.ts
Normal file
20
types.ts
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user