core/src/types/message.ts

9 lines
154 B
TypeScript
Raw Normal View History

2020-11-21 15:41:08 +00:00
import { IPlugin } from '../plugin/plugin';
export interface IMessage {
data: any;
source: IPlugin;
time: Date;
resolve(...args: any[]): void;
}