We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ee9fd6 commit 2179dc2Copy full SHA for 2179dc2
projects/hslayers/types/layer-manager/layer-descriptor.interface.ts
@@ -6,17 +6,17 @@ export type HsLayerTimeDescriptor = {
6
default: string;
7
timePoints: Array<string>;
8
};
9
-/**
10
- * @param timer Loading progress timer which controls load events executions
11
- * and tries to reset progress once the loading finished (no execution in 2000ms)
12
- */
13
export type HsLayerLoadProgress = {
14
total: number;
15
pending: number;
16
loadError: number;
17
percents: number;
18
loaded: boolean;
19
error?: boolean;
+ /**
+ * Loading progress timer which controls load events executions
+ * and tries to reset progress once the loading finished (no execution in 2000ms)
+ */
20
timer?: Subject<number>;
21
22
0 commit comments