import { IMediaType } from "./i-media-type";
export interface IMediaTypes {
    [type: string]: IMediaType;
}
