UNPKG

tiny-types

Version:

A tiny library that brings Tiny Types to JavaScript and TypeScript

5 lines (4 loc) 132 B
import { JSONValue } from './json'; export interface Serialisable<S extends JSONValue = JSONValue> { toJSON(): S | undefined; }