UNPKG

fake-iamport-server

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