UNPKG

solidjs-div-100vh

Version:

A workaround for the '100vh' issue in mobile browsers

8 lines (7 loc) 330 B
import { JSX } from "solid-js"; export default function Div100vh(props: JSX.HTMLAttributes<HTMLDivElement> & { ref?: JSX.Element; style?: Omit<JSX.CSSProperties, "height">; }): JSX.Element; export declare function create100vh(): import("solid-js").Accessor<number>; export declare function measureHeight(): number;