setup-node/node_modules/realpath-native/index.d.ts
eric sciple 422b9fdb15 .
2020-01-24 12:21:24 -05: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;