UNPKG

@dabapps/roe

Version:

A collection of React components, styles, mixins, and atomic CSS classes to aid with the development of web applications.

12 lines (11 loc) 564 B
import * as React from 'react'; export declare const formatCode: (code: string) => string; export declare const getHref: (children?: React.ReactNode, href?: string | undefined) => string | undefined; export declare const resetRandomSeed: () => void; export declare const generateIpsum: (words: ReadonlyArray<string>) => string; export declare const shouldNotBeRendered: (children: unknown) => boolean; export declare const isValidColumnNumber: (value?: number | undefined) => boolean; export declare const getScrollOffset: () => { x: number; y: number; };