install-nix-action/node_modules/realpath-native/index.d.ts
Domen Kožar 70742d22d9
v6
2019-11-19 17:50:30 +01: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;