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