Stone.js API
    Preparing search index...

    The shape this module needs from a route. Duck-typed on purpose: @stone-js/openapi derives the contract without depending on @stone-js/router, exactly as the router carries module props without depending on the modules.

    interface RouteLike {
        getOption: <T = unknown>(key: string, fallback?: T) => T;
        method: string;
        path: string;
    }
    Index
    getOption: <T = unknown>(key: string, fallback?: T) => T
    method: string
    path: string