UNPKG

@plattar/plattar-api

Version:

Module for interfacing with the Plattar API (https://www.plattar.com)

7 lines (6 loc) 300 B
import { PlattarBase } from "./../interfaces/plattar-base"; import { PlattarServer as Server } from "./../../server/plattar-server"; export abstract class CardBase extends PlattarBase { constructor(id: string, server: Server | undefined = undefined); static type(): { new(): CardBase; }[]; }