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