You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
337 B
10 lines
337 B
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
/// <reference path="./types.d.ts"/>
|
|
import { CompatData } from './types';
|
|
|
|
// This is necessary to have intellisense in projects which
|
|
// import data from this package.
|
|
declare const compatData: CompatData;
|
|
export = compatData;
|