1 | /**
|
2 | * Left-pads the time component with zeroes.
|
3 | *
|
4 | * @param timeComponent The time component, will be coerced to a string.
|
5 | * @param count The expected number of digits.
|
6 | */
|
7 | declare function padTimeComponent(timeComponent: unknown, count?: number): string;
|
8 | export = padTimeComponent;
|