123456789101112131415161718192021222324252627282930313233343536373839404142 |
- declare namespace latestVersion {
- interface Options {
-
-
- readonly version?: string;
- }
- }
-
- declare const latestVersion: {
-
-
- (packageName: string, options?: latestVersion.Options): Promise<string>;
-
-
-
-
-
-
-
- default: typeof latestVersion;
- };
-
- export = latestVersion;
|