import { DefaultResponse, Endpoint } from "sensible-core"; import { MiscEndpoints } from "./Misc/endpoints"; import { UserEndpoints } from "./User/endpoints"; export * from "./InterpretableTypes"; export * from "./CoreConstants"; interface TestEndpoint extends Endpoint { method: "GET"; body: {}; response: DefaultResponse; } export type AllEndpoints = UserEndpoints & MiscEndpoints & { //test to see if this is handled well test: TestEndpoint; };