@golemio/parkings
Version:
Golemio Parkings Module
22 lines (21 loc) • 833 B
TypeScript
import { TGeoCoordinates } from "@golemio/core/dist/output-gateway/Geo";
import { JSONSchemaType } from "@golemio/core/dist/shared/ajv";
import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize";
import { IEntrance } from "./interfaces/IEntrance";
export declare class EntrancesModel extends Model<IEntrance> implements IEntrance {
static tableName: string;
entrance_id: string;
source: string;
parking_id: string;
location: TGeoCoordinates;
entry: boolean | null;
exit: boolean | null;
entrance_type: string[] | null;
level: number | null;
max_height: number | null;
max_width: number | null;
max_length: number | null;
max_weight: number | null;
static attributeModel: ModelAttributes<EntrancesModel>;
static jsonSchema: JSONSchemaType<IEntrance[]>;
}