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