@fourlights/mapper
Version:
A simple data mapper written in typescript
15 lines (12 loc) • 580 B
TypeScript
import { isPlainObject } from './lib/utils/isPlainObject.js';
import { wrapProperty } from './lib/utils/wrapProperty.js';
import { pick } from './lib/utils/pick.js';
import { omit } from './lib/utils/omit.js';
declare const index_isPlainObject: typeof isPlainObject;
declare const index_omit: typeof omit;
declare const index_pick: typeof pick;
declare const index_wrapProperty: typeof wrapProperty;
declare namespace index {
export { index_isPlainObject as isPlainObject, index_omit as omit, index_pick as pick, index_wrapProperty as wrapProperty };
}
export { index as i };