TestMessage.d.ts 160 B

1234567
  1. import { Notification } from '../Notification';
  2. export interface TestMessage {
  3. frame: number;
  4. notification: Notification<any>;
  5. isGhost?: boolean;
  6. }