path.d.ts 141 B

1234
  1. declare module 'path' {
  2. export function dirname(dir: string): string;
  3. export function resolve(root: string, name: string): string;
  4. }