setup-node/node_modules/realpath-native/index.d.ts
Danny McCormick c3f0a8be66 Use husky
2019-06-05 11:34:47 -04: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;