summaryrefslogtreecommitdiff
path: root/media_types/deps.ts
blob: bc08f3a480e46e298115fb1867070ccb64d608f2 (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_1.37.0.json";
export const db: DB = _db;