Skip to content

Commit 2179dc2

Browse files
committed
chore: Move layer load progress docs coment
1 parent 2ee9fd6 commit 2179dc2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

projects/hslayers/types/layer-manager/layer-descriptor.interface.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@ export type HsLayerTimeDescriptor = {
66
default: string;
77
timePoints: Array<string>;
88
};
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-
*/
139
export type HsLayerLoadProgress = {
1410
total: number;
1511
pending: number;
1612
loadError: number;
1713
percents: number;
1814
loaded: boolean;
1915
error?: boolean;
16+
/**
17+
* Loading progress timer which controls load events executions
18+
* and tries to reset progress once the loading finished (no execution in 2000ms)
19+
*/
2020
timer?: Subject<number>;
2121
};
2222

0 commit comments

Comments
 (0)