install-nix-action/node_modules/realpath-native/index.d.ts
Domen Kožar 08403cd828
v5
2019-11-13 17:14:48 +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;