setup-node/node_modules/realpath-native/index.d.ts
eric sciple ae5dcb46c8 .
2020-01-24 12:30:26 -05:00

7 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;