UNPKG

json-joy

Version:

Collection of libraries for building collaborative editing apps.

9 lines (8 loc) 170 B
/** * @category Patch */ export declare class Konst<T = unknown> { readonly val: T; constructor(val: T); } export declare const konst: <T>(val: T) => Konst<T>;