UNPKG
tweak-tools
Version:
latest (0.1.1)
0.1.1
0.1.0
Tweak your React projects until awesomeness
github.com/appeltje-c/tweak-tools
appeltje-c/tweak-tools
tweak-tools
/
dist
/
components
/
Monitor
/
Monitor.d.ts
8 lines
(7 loc)
•
267 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
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
{};