UNPKG

tweak-tools

Version:

Tweak your React projects until awesomeness

8 lines (7 loc) 267 B
import React from 'react'; import type { MonitorInput } from '../../types'; declare type MonitorProps = { label: string; } & Omit<MonitorInput, 'type'>; export declare function Monitor({ label, objectOrFn, settings }: MonitorProps): React.JSX.Element; export {};