UNPKG

@citrineos/data

Version:

The OCPP data module which includes all persistence layer implementation.

12 lines (11 loc) 385 B
import type { TenantDto } from '@citrineos/base'; import { Model } from 'sequelize-typescript'; export declare class ComponentVariable extends Model { static readonly MODEL_NAME: string; componentId: number; variableId: number; tenantId: number; tenant?: TenantDto; static setDefaultTenant(instance: ComponentVariable): void; constructor(...args: any[]); }