Interface EncodedContent<Parameters>

interface EncodedContent<Parameters> {
    compression?: number;
    content: Uint8Array;
    fallback?: string;
    parameters: Parameters;
    type: ContentTypeId;
}

Type Parameters

  • Parameters = Record<string, string>

Properties

compression?: number
content: Uint8Array
fallback?: string
parameters: Parameters

Generated using TypeDoc