import { GET, ngGET } 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 const test = ngGET(undefined)(undefined)( (query, ctx, req, res) => { throw new Error("Method not implemented."); } );