Adds @xuqm/h5-sdk/private entry point with JSON-based initialization, feature gating, and error codes for private deployment scenarios. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
13 行
348 B
TypeScript
13 行
348 B
TypeScript
import type { IProblem } from '@rushstack/problem-matcher';
|
|
/**
|
|
* Collects problems (errors/warnings/info) encountered during an operation.
|
|
*
|
|
* @beta
|
|
*/
|
|
export interface IProblemCollector {
|
|
/**
|
|
* Returns the collected problems so far.
|
|
*/
|
|
get problems(): ReadonlySet<IProblem>;
|
|
}
|
|
//# sourceMappingURL=IProblemCollector.d.ts.map
|