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

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

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

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