import { GET } from "../defs.js"; import type { structure } from "../../apiStructure/sammoRootAPI.js"; import type { ExtractError, ExtractQuery, ExtractResponse } from "../../apiStructure/defs.js"; import { declProcDecorators } from "../ProcDecorator/base.js"; type BaseAPI = typeof structure.Login.test; type RType = ExtractResponse; type EType = ExtractError; type QType = ExtractQuery; export const test = GET (undefined) (declProcDecorators([] as const)) (() => { throw new Error("Method not implemented."); });