approvals
Version:
Approval Tests Library - Capturing Human Intelligence
9 lines (8 loc) • 337 B
TypeScript
export declare class ReportLaunchingCircuitBreaker {
static setMaxLaunch(value: number): void;
static get currentCount(): number;
static notifyLaunched(): void;
static isLimitExceeded(): boolean;
static check(approved: string, received: string, options: any): boolean;
}
export default ReportLaunchingCircuitBreaker;