UNPKG
ts-std-lib
Version:
latest (1.2.2)
1.2.2
1.2.1
1.2.0
1.1.1
1.1.0
1.0.1
1.0.0
A standard library for typescript
github.com/SeanSobey/ts-std-lib
SeanSobey/ts-std-lib
ts-std-lib
/
dist
/
Serialization
/
Json
/
IsJsonSerializable.d.ts
6 lines
(5 loc)
•
191 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
IJsonSerializable
}
from
'./Json'
;
/** * Checks if an object is json serializable */
export
declare
function
isJsonSerializable
(
object
:
unknown
):
object
is
IJsonSerializable
;