mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-24 05:06:02 +08:00
Unwrap all lone ambient external modules
This commit is contained in:
14
react-spinkit/react-spinkit.d.ts
vendored
14
react-spinkit/react-spinkit.d.ts
vendored
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user