UNPKG

deckbuilder

Version:

A deck building and management tool any card based games in the browser or Node.

10 lines (9 loc) 246 B
import Card from '../interfaces/Card'; /** * Clone an object and its properties. * * @param {Object} o The object to clone. * * @returns {Object} Returns the cloned object. */ export declare function deepCopy(o: any): Array<Card>;