UNPKG

@munit-solutions/ocpp

Version:
11 lines (10 loc) 313 B
import Call from '../Call'; import ResetType from '../../enum/ResetType'; export declare type ResetPayload = { type: ResetType; }; export default class Reset extends Call { uniqueId: string; payload?: ResetPayload | undefined; constructor(uniqueId?: string, payload?: ResetPayload | undefined); }