mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-10-11 16:16:05 +08:00
32 lines
986 B
JavaScript
32 lines
986 B
JavaScript
//this file should be concatenated at the top of the legacy js files
|
|
|
|
import Chart from "chart.js";
|
|
import chartTrendline from "chartjs-plugin-trendline";
|
|
import chartAnnotation from "chartjs-plugin-annotation";
|
|
|
|
Chart.plugins.register(chartTrendline);
|
|
Chart.plugins.register(chartAnnotation);
|
|
|
|
import {
|
|
db_getSnapshot,
|
|
db_setSnapshot,
|
|
db_getUserSnapshot,
|
|
db_getUserResults,
|
|
db_getUserHighestWpm,
|
|
db_getLocalPB,
|
|
db_getUserAverageWpm10,
|
|
db_saveLocalPB,
|
|
db_getLocalTagPB,
|
|
db_saveLocalTagPB,
|
|
} from "./db";
|
|
|
|
import { showBackgroundLoader, hideBackgroundLoader } from "./dom-util";
|
|
import * as Misc from "./misc";
|
|
import * as CloudFunctions from "./cloud-functions";
|
|
import layouts from "./layouts";
|
|
import * as Monkey from "./monkey";
|
|
import * as Notifications from "./notification-center";
|
|
import * as ResultFilters from "./result-filters";
|
|
import * as Leaderboards from "./leaderboards";
|
|
import * as Sound from "./sound";
|
|
import * as CustomText from "./custom-text";
|