src/app/modules/shared-feature/interfaces/deviceProfile.ts
Properties |
|
| ipLocation |
ipLocation:
|
Type : ILocation
|
| userDeclaredLocation |
userDeclaredLocation:
|
Type : ILocation
|
| Optional |
export interface IDeviceProfile {
ipLocation: ILocation;
userDeclaredLocation?: ILocation;
}
interface ILocation {
state: string;
district: string;
}