diff --git a/src/swing.ts b/src/swing.ts index 061a7a2..fbc9c20 100644 --- a/src/swing.ts +++ b/src/swing.ts @@ -93,6 +93,12 @@ export interface Stack { */ getCard(element: HTMLElement): Card; + /** + * + *@param {Card} card + */ + destroyCard(card: Card): void; + on(eventName: ThrowEventName, callabck: (event: ThrowEvent) => void): void; on(eventName: DragEventName, callabck: (event: DragEvent) => void): void; }