@golemio/pid
Version:
Golemio PID Module
13 lines (12 loc) • 737 B
TypeScript
import { JSONSchemaType } from "@golemio/core/dist/shared/ajv";
import { CreationOptional, InferAttributes, InferCreationAttributes, Model, ModelAttributes } from "@golemio/core/dist/shared/sequelize";
import { IJISInfotextsPresets } from "./interfaces";
export declare class JISInfotextsPresetsModel extends Model<InferAttributes<JISInfotextsPresetsModel>, InferCreationAttributes<JISInfotextsPresetsModel>> implements IJISInfotextsPresets {
static tableName: string;
infotext_id: string;
route_name: string;
created_at: CreationOptional<Date>;
updated_at: CreationOptional<Date>;
static attributeModel: ModelAttributes<JISInfotextsPresetsModel>;
static jsonSchema: JSONSchemaType<IJISInfotextsPresets[]>;
}