parse-content-type.d.ts 292 B

123456789101112131415
  1. /**
  2. * Parsed content type.
  3. */
  4. export type ParsedContentType = {
  5. boundary: string | undefined;
  6. charset: string | undefined;
  7. mediaType: string | undefined;
  8. };
  9. /**
  10. * Parse content type.
  11. *
  12. * @param input
  13. */
  14. export declare function parseContentType(input: string): ParsedContentType;