File: node.d.ts

package info (click to toggle)
node-get-caller-file 2.0.5%2B~cs1.1.1-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 228 kB
  • sloc: javascript: 10; makefile: 2
file content (10 lines) | stat: -rw-r--r-- 236 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
declare module 'path-win32' {
  let sep: string;
  export function join(x: string, y: string, z: string) : string;

}

declare module 'path-posix' {
  let sep: string;
  export function join(x: string, y: string, z: string) : string;
}