agent-claw: automated task changes
This commit is contained in:
16
cdk/node_modules/aws-cdk/lib/cli/telemetry/sink/funnel.d.ts
generated
vendored
Normal file
16
cdk/node_modules/aws-cdk/lib/cli/telemetry/sink/funnel.d.ts
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
import type { TelemetrySchema } from '../schema';
|
||||
import type { ITelemetrySink } from './sink-interface';
|
||||
export interface FunnelProps {
|
||||
readonly sinks: ITelemetrySink[];
|
||||
}
|
||||
/**
|
||||
* A funnel is a combination of one or more sinks.
|
||||
* The sink functions are executed in parallel, and a maximum of 5
|
||||
* sinks are supported per funnel.
|
||||
*/
|
||||
export declare class Funnel {
|
||||
private readonly sinks;
|
||||
constructor(props: FunnelProps);
|
||||
emit(event: TelemetrySchema): Promise<void>;
|
||||
flush(): Promise<void>;
|
||||
}
|
||||
Reference in New Issue
Block a user