UNPKG
objection-visibility
Version:
latest (1.2.0)
1.2.0
1.1.0
1.0.0
0.4.0
0.3.2
0.3.1
0.3.0
0.2.0
0.1.0
Objectionjs plugin to whitelist/blacklist model properties
oscaroox/objection-visibility
objection-visibility
/
dist
/
utils.d.ts
7 lines
(6 loc)
•
224 B
TypeScript
View Raw
1
2
3
4
5
6
7
interface
IObjectType
{ [
k
:
string
]: {}; }
export
declare
function
pick
(
data
:
IObjectType
,
toPick
:
string
[]
):
IObjectType
;
export
declare
function
omit
(
data
:
IObjectType
,
toOmit
:
string
[]
):
IObjectType
;
export
{};