Replace entire repo content with code from /root/shahikitchen-google/

This commit is contained in:
root
2026-07-03 02:51:15 +00:00
parent c8b7dc95e4
commit 8ccf033329
79 changed files with 7611 additions and 439 deletions
@@ -0,0 +1,22 @@
export interface GeoapifyAddressProperties {
formatted?: string;
address_line1?: string;
address_line2?: string;
city?: string;
municipality?: string;
postcode?: string;
country?: string;
country_code?: string;
lat?: number;
lon?: number;
}
export interface GeoapifyFeature {
type: 'Feature';
properties: GeoapifyAddressProperties;
}
export interface GeoapifyAutocompleteResponse {
type: string;
features: GeoapifyFeature[];
}