1 | /**
|
2 | * `VersionsToTimestamps` maps version numbers to their publishing timestamps.
|
3 | */
|
4 | export interface VersionsToTimestamps {
|
5 | /** Package creation time */
|
6 | readonly created: string;
|
7 | /** Last package update time */
|
8 | readonly modified: string;
|
9 | /** Mapping of version numbers to publishing timestamps */
|
10 | readonly [key: string]: string;
|
11 | }
|
12 | //# sourceMappingURL=versions-to-timestamps.d.ts.map |
\ | No newline at end of file |