0.0.36 • Published 6 months ago

@types/glob-expand v0.0.36

Weekly downloads
104
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/glob-expand

Summary

This package contains type definitions for glob-expand (https://github.com/anodynos/node-glob-expand).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/glob-expand.

index.d.ts

// Type definitions for glob-expand
// Project: https://github.com/anodynos/node-glob-expand
// Definitions by: vvakame <https://github.com/vvakame>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference types="glob"/>

import * as glob from "glob";

interface Option {
    filter?: string | ((filePath: string) => boolean) | undefined;
    cwd?: string | undefined;
}

type _glob = typeof glob;
declare namespace expand {
    var glob: _glob;
    var VERSION: string;
}

declare function expand(opts: Option, patterns: (string | RegExp)[]): string[];
declare function expand(opts: Option, ...patterns: (string | RegExp)[]): string[];
declare function expand(patterns: (string | RegExp)[]): string[];
declare function expand(...patterns: (string | RegExp)[]): string[];

export = expand;

Additional Details

  • Last updated: Thu, 08 Jul 2021 12:02:13 GMT
  • Dependencies: @types/glob
  • Global values: none

Credits

These definitions were written by vvakame.

0.0.34

7 months ago

0.0.35

6 months ago

0.0.36

6 months ago

0.0.33

1 year ago

0.0.32

3 years ago

0.0.31

7 years ago

0.0.30

8 years ago

0.0.29

8 years ago

0.0.28-alpha

8 years ago

0.0.26-alpha

8 years ago

0.0.25-alpha

8 years ago

0.0.24-alpha

8 years ago

0.0.23-alpha

8 years ago

0.0.22-alpha

8 years ago

0.0.21-alpha

8 years ago

0.0.16-alpha

8 years ago

0.0.15-alpha

8 years ago