UNPKG

@prismatic-io/spectral

Version:

Utility library for building Prismatic connectors and code-native integrations

10 lines (9 loc) 301 B
/** Binary data payload. */ export interface DataPayload { /** Raw binary data as a Buffer. */ data: Buffer; /** Content type of data contained within this payload. */ contentType: string; /** Suggested extension to use when writing the data. */ suggestedExtension?: string; }