Unwrap all lone ambient external modules

This commit is contained in:
Ryan Cavanaugh
2016-04-22 14:12:45 -07:00
parent fa7a5ddc9b
commit 4a433abbf4
616 changed files with 74328 additions and 75201 deletions

View File

@@ -5,15 +5,13 @@
/// <reference path="../react/react.d.ts" />
declare module "react-spinkit" {
import { Component } from 'react';
interface Props {
spinnerName?: string;
}
import { Component } from 'react';
class Spinner extends Component<Props, {}> { }
export default Spinner;
interface Props {
spinnerName?: string;
}
declare class Spinner extends Component<Props, {}> { }
export default Spinner;