UNPKG

@golemio/pid

Version:
13 lines (12 loc) 519 B
import { JSONSchemaType } from "@golemio/core/dist/shared/ajv"; import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize"; import { IShapeDto } from "../interfaces/IShapeDto"; export declare class ShapeDto extends Model<IShapeDto> implements IShapeDto { shape_id: string; shape_pt_sequence: number; shape_dist_traveled: number; shape_pt_lat: number; shape_pt_lon: number; static attributeModel: ModelAttributes<ShapeDto>; static jsonSchema: JSONSchemaType<IShapeDto[]>; }