UNPKG

tiny-types

Version:

A tiny library that brings Tiny Types to JavaScript and TypeScript

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