@golemio/parkings
Version:
Golemio Parkings Module
19 lines (18 loc) • 716 B
TypeScript
import { Point } from "@golemio/core/dist/shared/geojson";
import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize";
import { JSONSchemaType } from "@golemio/core/dist/shared/ajv";
import { IParkingMachine } from "./interfaces/IParkingMachine";
export declare class ParkingMachinesModel extends Model<IParkingMachine> implements IParkingMachine {
static tableName: string;
id: string;
source: string;
sourceId: string;
code: string;
type: string;
location: Point;
validFrom: Date;
active: boolean;
static attributeModel: ModelAttributes<ParkingMachinesModel>;
static attributeList: string[];
static jsonSchema: JSONSchemaType<IParkingMachine[]>;
}