UNPKG
@playbooks/serializers
Version:
latest (0.13.1)
0.13.1
0.13.0
0.12.1
0.12.0
0.11.2
0.11.1
0.11.0
0.10.2
0.10.1
0.10.0
0.9.3
0.9.2
0.9.1
0.9.0
0.0.4
0.0.3
0.0.2
0.0.1
A collection of serializers for Playbooks.
playbooks-xyz/playbooks-core
@playbooks/serializers
/
dist
/
json-api.d.ts
12 lines
(11 loc)
•
281 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
export
declare
const
jsonApiSerializeArray
:
(
data
?:
any
[]
) =>
{
data
: {
attributes
:
any
[]; }; };
export
declare
const
jsonApiSerialize
:
(
data
?:
any
) =>
{
data
: {
attributes
:
any
; }; };
export
declare
const
jsonApiSerializeAttrs
:
(
data
?:
any
) =>
{};