UNPKG

easy-api.ts

Version:

A powerful library to create your own API with ease.

13 lines (12 loc) 276 B
import { API } from "./API"; /** * Represents an easy-api.ts add-on. */ export declare class Addon { name: string; description: string; version: string; requiredVersions: string[]; requiredAddons: string[]; init(server: API): void | Promise<void>; }