import Base, { MaybeRaw } from "../../Base"; import { Version } from "../../interfaces/global"; import { ShortsInternal } from "./internal"; export default class Shorts extends Base { /** * Handles everything around internal endpoints */ get internal(): ShortsInternal; private _internal?; /** * Requests the endpoint version * @returns Version object */ version(raw?: { raw: R; }): Promise>; protected getEndpoint(endpoint: string): string; }