summaryrefslogtreecommitdiff
path: root/std/media_types/deps.ts
blob: fb87a8617ddddd80967c931997ab53e149751eac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.

export { extname } from "../fs/path.ts";

interface DB {
  [mediaType: string]: {
    source?: string;
    compressible?: boolean;
    charset?: string;
    extensions?: string[];
  };
}

import _db from "./db_c50e0d1.json";
export const db: DB = _db;