1234567891011121314151617181920212223242526272829303132333435363738394041 |
- declare namespace pathKey {
- interface Options {
-
- readonly env?: {[key: string]: string | undefined};
-
- readonly platform?: NodeJS.Platform;
- }
- }
- declare const pathKey: {
-
- (options?: pathKey.Options): string;
-
-
-
- default: typeof pathKey;
- };
- export = pathKey;
|