We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d546ab3 commit b990f49Copy full SHA for b990f49
packages/cli-v3/src/build/braces.d.ts
@@ -117,9 +117,10 @@ interface Options {
117
// Ambient type override for braces to allow string or string[] as pattern
118
declare module "braces" {
119
function braces(pattern: string | string[], options?: Options): string[];
120
+
121
namespace braces {
- function expand(pattern: string | string[]): string[];
122
+ function expand(pattern: string | string[], options?: Omit<Options, "expand">): string[];
123
}
124
- export = braces;
125
+ export default braces;
126
0 commit comments