UNPKG

360 BPlain TextView Raw
1/**
2 * `VersionsToTimestamps` maps version numbers to their publishing timestamps.
3 */
4export interface VersionsToTimestamps {
5 /** Package creation time */
6 readonly created: string;
7
8 /** Last package update time */
9 readonly modified: string;
10
11 /** Mapping of version numbers to publishing timestamps */
12 readonly [key: string]: string;
13}