Home Reference Source Test

src/types/serialisation.ts

  1. import { JSONValue } from './json';
  2.  
  3. export interface Serialisable<S extends JSONValue = JSONValue> {
  4. toJSON(): S | undefined;
  5. }