UNPKG

@daiso-tech/core

Version:

The library offers flexible, framework-agnostic solutions for modern web applications, built on adaptable components that integrate seamlessly with popular frameworks like Next Js.

13 lines (12 loc) 287 B
/** * @module Serde */ /** * The `ISerializable` contract defines standard way to make a class instance serializable. * * IMPORT_PATH: `"@daiso-tech/core/serde/contracts"` * @group Contracts */ export type ISerializable<TSerializedValue> = { serialize(): TSerializedValue; };