UNPKG

fake-iamport-server

Version:
13 lines (11 loc) 280 B
/** * @packageDocumentation * @module api.typings */ //================================================================ export type Writable<T> = { -readonly [P in keyof T]: T[P]; }; export function Writable<T>(elem: Readonly<T>): Writable<T> { return elem; }