export interface CopyOps { readonly sym: unique symbol; } export declare const Copy: CopyOps; /** * @tsplus type Copy */ export interface Copy { [Copy.sym](this: this, that: Partial): this; } /** * @tsplus pipeable Copy copy * @tsplus location "@tsplus/stdlib/structure/Copy" */ export declare function copy(that: Partial): (self: A) => A; //# sourceMappingURL=Copy.d.ts.map