Skip to content

Commit

Permalink
chore: Move layer load progress docs coment
Browse files Browse the repository at this point in the history
  • Loading branch information
FilipLeitner committed Feb 20, 2024
1 parent 2ee9fd6 commit 2179dc2
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@ export type HsLayerTimeDescriptor = {
default: string;
timePoints: Array<string>;
};
/**
* @param timer Loading progress timer which controls load events executions
* and tries to reset progress once the loading finished (no execution in 2000ms)
*/
export type HsLayerLoadProgress = {
total: number;
pending: number;
loadError: number;
percents: number;
loaded: boolean;
error?: boolean;
/**
* Loading progress timer which controls load events executions
* and tries to reset progress once the loading finished (no execution in 2000ms)
*/
timer?: Subject<number>;
};

Expand Down

0 comments on commit 2179dc2

Please sign in to comment.