mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
17 lines
514 B
TypeScript
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;
|
|
}
|