mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
20 lines
483 B
TypeScript
20 lines
483 B
TypeScript
// Type definitions for react-spinkit 1.1.4
|
|
// Project: https://github.com/KyleAMathews/react-spinkit
|
|
// Definitions by: Qubo <https://github.com/tkqubo>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference path="../react/react.d.ts" />
|
|
|
|
declare module "react-spinkit" {
|
|
import { Component } from 'react';
|
|
|
|
interface Props {
|
|
spinnerName?: string;
|
|
}
|
|
|
|
class Spinner extends Component<Props, {}> { }
|
|
|
|
export default Spinner;
|
|
}
|
|
|