daml/navigator/frontend/declarations.d.ts
Gary Verhaegen 1872c668a5
replace DAML Authors with DA in copyright headers (#5228)
Change requested by Manoj.

CHANGELOG_BEGIN
CHANGELOG_END
2020-03-27 01:26:10 +01:00

29 lines
640 B
TypeScript

// Copyright (c) 2020 Digital Asset (Switzerland) GmbH and/or its affiliates. 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;