child-message.d.ts 187 B

1234567
  1. import { ParentCommand } from '../enums/parent-command';
  2. export interface ChildMessage {
  3. cmd: ParentCommand;
  4. requestId?: string;
  5. value?: any;
  6. err?: Record<string, any>;
  7. }