Skip to content

Commit

Permalink
Fixing api-extractor in GCB projects.
Browse files Browse the repository at this point in the history
  • Loading branch information
iclanton committed Feb 11, 2019
1 parent 6387d77 commit 78c7043
Show file tree
Hide file tree
Showing 11 changed files with 342 additions and 524 deletions.
8 changes: 5 additions & 3 deletions common/reviews/api/gulp-core-build-sass.api.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// WARNING: Unsupported export: sass
// WARNING: Unsupported export: default
// (No @packagedocumentation comment for this package)
// @public (undocumented)
declare const sass: SassTask;


// (No @packageDocumentation comment for this package)
20 changes: 14 additions & 6 deletions common/reviews/api/gulp-core-build-serve.api.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
// WARNING: Unsupported export: serve
// WARNING: Unsupported export: reload
// WARNING: Unsupported export: trustDevCert
// WARNING: Unsupported export: untrustDevCert
// WARNING: Unsupported export: default
// (No @packagedocumentation comment for this package)
// @public (undocumented)
declare const reload: ReloadTask;

// @public (undocumented)
declare const serve: ServeTask;

// @public (undocumented)
declare const trustDevCert: TrustCertTask;

// @public (undocumented)
declare const untrustDevCert: UntrustCertTask;


// (No @packageDocumentation comment for this package)
45 changes: 24 additions & 21 deletions common/reviews/api/gulp-core-build-webpack.api.ts
Original file line number Diff line number Diff line change
@@ -1,31 +1,34 @@
// @public (undocumented)
interface IWebpackResources {
// (undocumented)
webpack: typeof Webpack;
// (undocumented)
webpack: typeof Webpack;
}

// @public (undocumented)
interface IWebpackTaskConfig {
config?: Webpack.Configuration;
configPath: string;
printStats?: boolean;
suppressWarnings?: (string | RegExp)[];
webpack?: typeof Webpack;
config?: Webpack.Configuration;
configPath: string;
printStats?: boolean;
suppressWarnings?: (string | RegExp)[];
webpack?: typeof Webpack;
}

// @public (undocumented)
class WebpackTask<TExtendedConfig = {}> extends GulpTask<IWebpackTaskConfig & TExtendedConfig> {
constructor(extendedName?: string, extendedConfig?: TExtendedConfig);
// (undocumented)
executeTask(gulp: typeof Gulp, completeCallback: (error?: string) => void): void;
// (undocumented)
isEnabled(buildConfig: IBuildConfig): boolean;
// (undocumented)
loadSchema(): Object;
// (undocumented)
readonly resources: IWebpackResources;
}
declare const webpack: WebpackTask;

// @public (undocumented)
declare class WebpackTask<TExtendedConfig = {}> extends GulpTask<IWebpackTaskConfig & TExtendedConfig> {
// (undocumented)
constructor(extendedName?: string, extendedConfig?: TExtendedConfig);
// (undocumented)
executeTask(gulp: typeof Gulp, completeCallback: (error?: string) => void): void;
// (undocumented)
isEnabled(buildConfig: IBuildConfig): boolean;
// (undocumented)
loadSchema(): Object;
// (undocumented)
readonly resources: IWebpackResources;
}


// WARNING: Unsupported export: webpack
// WARNING: Unsupported export: default
// (No @packagedocumentation comment for this package)
// (No @packageDocumentation comment for this package)
Loading

0 comments on commit 78c7043

Please sign in to comment.