UNPKG
map-transform-cjs
Version:
latest (0.2.0)
0.2.0
0.1.1
0.1.0
MapTransform with CJS support
github.com/oderayi/map-transform-cjs
oderayi/map-transform-cjs
map-transform-cjs
/
dist
/
transformers
/
map.d.cts
9 lines
(6 loc)
•
253 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
import
{
TransformerProps
,
Dictionary
,
Transformer
}
from
'../types.cjs'
;
interface
Props
extends
TransformerProps
{
dictionary
?:
Dictionary
|
string
; }
declare
const
transformer
:
Transformer
<
Props
>;
export
{
type
Props
, transformer
as
default
};