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
/
Image
/
image-plugin.d.ts
7 lines
(6 loc)
•
264 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
type
{
ImageInput
}
from
'../../types'
;
export
declare
const
sanitize
:
(
v
:
any
) =>
string
|
undefined
;
export
declare
const
schema
:
(
_o
:
any
,
s
:
any
) =>
boolean
;
export
declare
const
normalize
:
(
{ image }:
ImageInput
) =>
{
value
:
string
|
undefined
; };