import { GET } from "../defs"; import type { structure } from "../../apiStructure/sammoRootAPI"; import type { ExtractError, ExtractQuery, ExtractResponse } from "../../apiStructure/defs"; type BaseAPI = typeof structure.Login.test; type RType = ExtractResponse; type EType = ExtractError; type QType = ExtractQuery; export class test extends GET{ protected ReqNonce = Symbol("ReqNonce");//TODO: remove this protected override async api(query: QType): Promise { return { hello: "world", result: true, } } }