52 lines
1.1 KiB
TypeScript
52 lines
1.1 KiB
TypeScript
/**
|
|
* CloudEvent class definition
|
|
*/
|
|
export class Cloudevent {
|
|
public constructor(spec?: any, formatter?: any);
|
|
|
|
public format(): any;
|
|
public toString(): string;
|
|
|
|
public id(id: string): Cloudevent;
|
|
public getId(): string;
|
|
|
|
public source(source: string): Cloudevent;
|
|
public getSource(): string;
|
|
|
|
public getSpecversion(): string;
|
|
|
|
public type(type: string): Cloudevent;
|
|
public getType(): string;
|
|
|
|
public dataContentType(dct: string): Cloudevent;
|
|
public getDataContentType(): string;
|
|
|
|
public dataschema(schema: string): Cloudevent;
|
|
public getDataschema(): string;
|
|
|
|
public subject(subject: string): Cloudevent;
|
|
public getSubject(): string;
|
|
|
|
public time(time: Date): Cloudevent;
|
|
public getTime(): Date;
|
|
|
|
public data(data: any): Cloudevent;
|
|
public getData(): any;
|
|
}
|
|
|
|
/**
|
|
* HTTP emitter for Structured mode
|
|
*/
|
|
export class StructuredHTTPEmitter {
|
|
public constructor(configuration?: any);
|
|
|
|
public emit(event: Cloudevent): Promise;
|
|
}
|
|
|
|
/**
|
|
* Function to create CloudEvents instances
|
|
*/
|
|
export declare function event(): Cloudevent;
|
|
|
|
export default Cloudevent;
|