Skip to main content
The Deno 2 Release Candidate is here
Learn more

serializable

Serializable type definitions for TypeScript and a helper function to convert anything into a safely serializable value.

Usage

import type {
  Serializable,
  toSerializable,
} from "https://deno.land/x/serializable/mod.ts";

export function send(message: unknown) {
  const serializable: Serializable = toSerializable(message);
  const data = JSON.stringify(message);
  // ...
}