setup docker containers
This commit is contained in:
parent
3274d47c94
commit
13d9a24d63
22 changed files with 1593 additions and 745 deletions
17
Shared/Data.ts
Normal file
17
Shared/Data.ts
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
export class Data {
|
||||
public name: string;
|
||||
public data: any;
|
||||
public timestamp: number;
|
||||
public size: {
|
||||
width: number;
|
||||
height: number;
|
||||
};
|
||||
|
||||
constructor(name: string, data: any, size: any, timestamp?: number) {
|
||||
this.name = name;
|
||||
this.data = data;
|
||||
this.timestamp = timestamp ? timestamp : Date.now();
|
||||
this.size = size;
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue