setup-java/node_modules/realpath-native/index.d.ts
Stephen Franceschelli c1a589c5b6 Fix.
2019-07-30 13:41:05 -04:00

6 lines
193 B
TypeScript

declare function realpath(filepath: string): string;
declare namespace realpath {
var sync: typeof realpathSync;
}
declare function realpathSync(filepath: string): string;
export = realpath;