8 lines
168 B
Plaintext
8 lines
168 B
Plaintext
import { ObservableNotification } from '../types';
|
|
|
|
export interface TestMessage {
|
|
frame: number;
|
|
notification: ObservableNotification<any>;
|
|
isGhost?: boolean;
|
|
}
|