github
142 of 16625 branches covered (0.85%)
Branch coverage included in aggregate %.
0 of 22 new or added lines in 4 files covered. (0.0%)
3428 existing lines in 314 files now uncovered.392 of 31374 relevant lines covered (1.25%)
0.04 hits per line
UNCOV
1
|
export enum UpdateType { |
|
UNCOV
2
|
Add, |
× |
UNCOV
3
|
Remove, |
× |
UNCOV
4
|
Update, |
× |
5 |
} |
|
6 |
|
|
7 |
export interface ISerializable<T> {
|
|
8 |
serialize: () => T;
|
|
9 |
deserialize: (data: T) => void; |
|
10 |
} |
|
11 |
|
|
12 |
export interface IHasId {
|
|
13 |
id: string | number; |
|
14 |
} |
|
15 |
|
|
16 |
export interface IHasAddress {
|
|
17 |
address: string; |
|
18 |
} |