import type { RouteDeclaration } from "./routeDeclaration.ts"; /** * Any complete route declaration in a contract tree. * * @see {@link https://rest-rpc.dev/docs/route-builder} */ export type { RouteDeclaration } from "./routeDeclaration.ts"; /** * A route declaration or nested object tree of route declarations. * * @see {@link https://rest-rpc.dev/docs/route-builder} */ export type Contract = { readonly "~restrpc": RouteDeclaration; } | { [key: string]: Contract; };