DefinitelyTyped/types/react-body-classname/index.d.ts
2019-02-12 14:36:28 -08:00

17 lines
514 B
TypeScript

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