UNPKG

@golemio/pid

Version:
12 lines (11 loc) 532 B
import { JSONSchemaType } from "@golemio/core/dist/shared/ajv"; import { Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize"; import { ICisStopDto } from "./interfaces/ICisStopDto"; export declare class CisStopModel extends Model<CisStopModel> implements ICisStopDto { static tableName: string; rt_trip_id: string; cis_stop_group_id: number; cis_stop_platform_code: string | null; static attributeModel: ModelAttributes<CisStopModel>; static arrayJsonSchema: JSONSchemaType<ICisStopDto[]>; }