card-factory
Version:
A comprehensive library for card manipulation
9 lines • 522 B
TypeScript
import Pile from "./pile";
import { PileOptionsType } from "../../types/pile.types";
import Card from "../card/card";
import "../../styles/pile.css";
import type { PileElementType } from "../../types/pile.types";
import Deck from "../deck/deck";
export declare const createDefaultOptions: <T extends Card>() => PileOptionsType<T>;
export declare const pileElement: <T extends Card>(pile: Pile<T>, deck: Deck<T>, partialOptions?: Partial<PileOptionsType<T>>) => PileElementType<T>;
//# sourceMappingURL=pileElement.d.ts.map