Files
DefinitelyTyped/types/react-body-classname/index.d.ts
2017-03-30 14:11:46 -07:00

17 lines
526 B
TypeScript

// Type definitions for react-body-classname 1.1
// Project: https://github.com/PactCoffee/react-body-classname
// Definitions by: Mohamed Hegazy <https://github.com/mhegazy>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.1
import React = require("react");
export = BodyClassName;
declare class BodyClassName extends React.Component<{ className: string }, any> {
static canUseDOM: boolean;
static displayName: string;
static peek(): any;
static rewind(): any;
}