mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-21 05:20:24 +08:00
17 lines
526 B
TypeScript
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;
|
|
}
|