You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
405 B
TypeScript
19 lines
405 B
TypeScript
declare module "lodash";
|
|
declare module "*.json";
|
|
declare module "*.css";
|
|
declare module "*.less";
|
|
declare module "*.jpg";
|
|
declare module "*.gif";
|
|
declare module "*.png";
|
|
declare module "*.svg" {
|
|
export function ReactComponent(props: React.SVGProps<SVGSVGElement>): React.ReactElement;
|
|
|
|
const url: string;
|
|
export default url;
|
|
}
|
|
|
|
declare const _;
|
|
declare var AMap: any;
|
|
|
|
declare var $: JQueryStatic;
|