Type Alias FormatToType<Format>

FormatToType<Format>: Format extends Text
    ? string
    : Format extends ArrayBuffer
        ? ArrayBuffer
        : never

Content format to type mapping.

Type Parameters

  • Format

    The content format.