import { POST } from "../defs"; import type { structure } from "../../apiStructure/sammoRootAPI"; import type { ExtractError, ExtractQuery, ExtractResponse } from "../../apiStructure/defs"; type BaseAPI = typeof structure.Login.LoginByToken; type RType = ExtractResponse; type EType = ExtractError; type QType = ExtractQuery; export class LoginByToken extends POST{ protected LoginByToken = Symbol("LoginByToken");//TODO: remove this protected override async api(query: QType): Promise { throw new Error("Method not implemented."); } }