UNPKG

@golemio/pid

Version:
17 lines (16 loc) 682 B
import { JSONSchemaType } from "@golemio/core/dist/shared/ajv"; import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize"; import { ICommonRunsModel } from "./interfaces/ICommonRunsModel"; export declare class CommonRunsModel extends Model<CommonRunsModel> implements ICommonRunsModel { static TABLE_NAME: string; id: string; route_id: string; run_number: number; line_short_name: string; registration_number: string; msg_start_timestamp: string; msg_last_timestamp: string; wheelchair_accessible: boolean; static attributeModel: ModelAttributes<CommonRunsModel>; static jsonSchema: JSONSchemaType<ICommonRunsModel>; }