Add 'trigger' attribute to WSMessage

This commit is contained in:
Kristóf Tóth 2018-02-23 14:42:58 +01:00
parent 477ea8b03a
commit 6bdc3061cc

View File

@ -1,4 +1,5 @@
export class WSMessage<T> {
key: string;
trigger?: string;
data: T; // TODO: sane annotation
}