Skip to content

Commit 78c7043

Browse files
committed
Fixing api-extractor in GCB projects.
1 parent 6387d77 commit 78c7043

File tree

11 files changed

+342
-524
lines changed

11 files changed

+342
-524
lines changed
Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1-
// WARNING: Unsupported export: sass
2-
// WARNING: Unsupported export: default
3-
// (No @packagedocumentation comment for this package)
1+
// @public (undocumented)
2+
declare const sass: SassTask;
3+
4+
5+
// (No @packageDocumentation comment for this package)
Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
1-
// WARNING: Unsupported export: serve
2-
// WARNING: Unsupported export: reload
3-
// WARNING: Unsupported export: trustDevCert
4-
// WARNING: Unsupported export: untrustDevCert
5-
// WARNING: Unsupported export: default
6-
// (No @packagedocumentation comment for this package)
1+
// @public (undocumented)
2+
declare const reload: ReloadTask;
3+
4+
// @public (undocumented)
5+
declare const serve: ServeTask;
6+
7+
// @public (undocumented)
8+
declare const trustDevCert: TrustCertTask;
9+
10+
// @public (undocumented)
11+
declare const untrustDevCert: UntrustCertTask;
12+
13+
14+
// (No @packageDocumentation comment for this package)
Lines changed: 24 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,34 @@
11
// @public (undocumented)
22
interface IWebpackResources {
3-
// (undocumented)
4-
webpack: typeof Webpack;
3+
// (undocumented)
4+
webpack: typeof Webpack;
55
}
66

77
// @public (undocumented)
88
interface IWebpackTaskConfig {
9-
config?: Webpack.Configuration;
10-
configPath: string;
11-
printStats?: boolean;
12-
suppressWarnings?: (string | RegExp)[];
13-
webpack?: typeof Webpack;
9+
config?: Webpack.Configuration;
10+
configPath: string;
11+
printStats?: boolean;
12+
suppressWarnings?: (string | RegExp)[];
13+
webpack?: typeof Webpack;
1414
}
1515

1616
// @public (undocumented)
17-
class WebpackTask<TExtendedConfig = {}> extends GulpTask<IWebpackTaskConfig & TExtendedConfig> {
18-
constructor(extendedName?: string, extendedConfig?: TExtendedConfig);
19-
// (undocumented)
20-
executeTask(gulp: typeof Gulp, completeCallback: (error?: string) => void): void;
21-
// (undocumented)
22-
isEnabled(buildConfig: IBuildConfig): boolean;
23-
// (undocumented)
24-
loadSchema(): Object;
25-
// (undocumented)
26-
readonly resources: IWebpackResources;
27-
}
17+
declare const webpack: WebpackTask;
18+
19+
// @public (undocumented)
20+
declare class WebpackTask<TExtendedConfig = {}> extends GulpTask<IWebpackTaskConfig & TExtendedConfig> {
21+
// (undocumented)
22+
constructor(extendedName?: string, extendedConfig?: TExtendedConfig);
23+
// (undocumented)
24+
executeTask(gulp: typeof Gulp, completeCallback: (error?: string) => void): void;
25+
// (undocumented)
26+
isEnabled(buildConfig: IBuildConfig): boolean;
27+
// (undocumented)
28+
loadSchema(): Object;
29+
// (undocumented)
30+
readonly resources: IWebpackResources;
31+
}
32+
2833

29-
// WARNING: Unsupported export: webpack
30-
// WARNING: Unsupported export: default
31-
// (No @packagedocumentation comment for this package)
34+
// (No @packageDocumentation comment for this package)

0 commit comments

Comments
 (0)