Files
HKSingleParty/99_references/ionic-react-conference-app/src/models/Location.ts
2025-05-28 09:55:51 +08:00

16 lines
237 B
TypeScript

export interface Location {
id: number;
name: string;
lat: number;
lng: number;
center?: boolean;
}
export interface LocationState {
locations: Location[];
}
export const initialState: LocationState = {
locations: [],
};