forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing api-extractor in GCB projects.
- Loading branch information
Showing
11 changed files
with
342 additions
and
524 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
Oops, something went wrong.