@plattar/plattar-api
Version:
Module for interfacing with the Plattar API (https://www.plattar.com)
7 lines (6 loc) • 306 B
TypeScript
import { PlattarBase } from "./../interfaces/plattar-base";
import { PlattarServer as Server } from "./../../server/plattar-server";
export abstract class ProductBase extends PlattarBase {
constructor(id: string, server: Server | undefined = undefined);
static type(): { new(): ProductBase; }[];
}