Files
Livebeat/backend/models/beat/beat.interface.ts
Mondei1 ab1b90d020 Notification system in frontend
- Heatmap worker now reports progress
- Base for new altitude value
- Phones can be marked active
2020-11-13 19:04:45 +01:00

12 lines
318 B
TypeScript

import { Document } from 'mongoose';
import { IPhone } from '../phone/phone.interface';
export interface IBeat extends Document {
// [latitude, longitude, altitude, accuracy, speed]
coordinate?: number[],
accuracy: number,
speed: number,
battery?: number,
phone: IPhone,
createdAt?: Date
}