/** * @packageDocumentation * @module api.typings */ //================================================================ export type Writable = { -readonly [P in keyof T]: T[P]; }; export function Writable(elem: Readonly): Writable { return elem; }