UNPKG

@cosmicmind/patternjs

Version:

A library of Design Patterns in TypeScript.

7 lines 181 B
export interface Prototypeable { clone(): this; } export declare abstract class Prototype implements Prototypeable { clone(): this; } //# sourceMappingURL=Prototype.d.ts.map