File: index.d.ts

package info (click to toggle)
node-glob 10.3.6%2B~cs0.4.15-6
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 2,028 kB
  • sloc: javascript: 1,348; sh: 191; makefile: 16
file content (13 lines) | stat: -rw-r--r-- 232 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
type Options = {
  cwd?: string;
  dot?: boolean;
  absolute?: boolean;
  filesOnly?: boolean;
  flush?: boolean;
};

type FilePath = string;

declare function glob(str: string, opts?: Options): Promise<FilePath[]>;

export = glob;