install-nix-action/node_modules/realpath-native/index.d.ts
Domen Kožar 49df04613e
v7
2020-02-24 13:29:22 +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;