diff --git a/v1/index.d.ts b/v1/index.d.ts index f355e07..8252cd4 100644 --- a/v1/index.d.ts +++ b/v1/index.d.ts @@ -43,6 +43,15 @@ export class StructuredHTTPEmitter { public emit(event: Cloudevent): Promise; } +/** + * HTTP emitter for Binary mode + */ +export class BinaryHTTPEmitter { + public constructor(configuration?: any); + + public emit(event: Cloudevent): Promise; +} + /** * Function to create CloudEvents instances */