DefinitelyTyped/types/react-div-100vh/index.d.ts
t-moennich 10d1d6b990 Add types for react-div-100vh (#39256)
* Add types for react-div-100vh

* Update author profile link

* Add lower typescript version

* Use an up-to-date typescript version

* Remove moduleResolution default value
2019-10-22 14:14:55 -07:00

16 lines
533 B
TypeScript

// Type definitions for react-div-100vh 0.3
// Project: https://github.com/mvasin/react-div-100vh
// Definitions by: Tommy Mönnich <https://github.com/t-moennich>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.8
import * as React from "react";
export interface Div100vhProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
as?: keyof JSX.IntrinsicElements;
}
declare const Div100vh: React.ComponentClass<Div100vhProps>;
export default Div100vh;