UNPKG

@golemio/pid

Version:
17 lines (16 loc) 762 B
import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize"; import { JSONSchemaType } from "@golemio/core/dist/shared/ajv"; import { IMetroRunsMessagesModel } from "./interfaces/IMetroRunsMessagesModel"; export declare class MetroRunsMessagesModel extends Model<MetroRunsMessagesModel> implements IMetroRunsMessagesModel { static TABLE_NAME: string; route_name: string; message_timestamp: Date; train_set_number_scheduled: string; train_set_number_real: string; train_number: string; track_id: string; delay_origin: number; actual_position_timestamp_scheduled: Date; static attributeModel: ModelAttributes<MetroRunsMessagesModel>; static arrayJsonSchema: JSONSchemaType<IMetroRunsMessagesModel[]>; }