feat(device): Ensure serial the device communication (#508)

This commit is contained in:
Róbert Kiss
2017-12-09 16:11:03 +01:00
committed by László Monda
parent 19d7b8ebfe
commit 3de9181687
3 changed files with 72 additions and 8 deletions

View File

@@ -0,0 +1,6 @@
export interface QueueEntry {
method: Function;
bind: any;
params?: any[];
asynchronous?: boolean;
}