daml/navigator/frontend/declarations.d.ts
2019-08-13 17:23:03 +01:00

29 lines
602 B
TypeScript

// Copyright (c) 2019 The DAML Authors. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
declare module '*.png';
declare module "recharts";
declare module 'babel-standalone' {
export * from 'babel-core';
}
declare module '@babel/standalone' {
export * from 'babel-core';
}
// Webpack loader to load the content of a file as a string
declare module "!raw-loader!*" {
}
declare module "modernizr" {
// tslint:disable-next-line:no-any
var _a: any;
export = _a;
}
// Constants injected by Webpack
declare const __BUILD_VERSION__: string;
declare const __BUILD_COMMIT__: string;