Rocky_Mountain_Vending/.pnpm-store/v10/files/90/2e5be5f36be7c028f83158acdd9b4bd5c28cbfda0ad5bbfa28ab38d3f2bc2dd9d65406e0b2365bc31cfd71a5368a172bd05bba354a273195ed4b6093890b5b
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

16 lines
No EOL
701 B
Text

/// <reference types="koa__router" />
import type { Middleware, ParameterizedContext, DefaultState } from 'koa';
import type * as Router from '@koa/router';
export declare type KoaContext = ParameterizedContext<DefaultState, Router.RouterParamContext>;
export declare type KoaMiddleware = Middleware<DefaultState, KoaContext> & {
router?: Router;
};
/**
* This symbol is used to mark a Koa layer as being already instrumented
* since its possible to use a given layer multiple times (ex: middlewares)
*/
export declare const kLayerPatched: unique symbol;
export declare type KoaPatchedMiddleware = KoaMiddleware & {
[kLayerPatched]?: boolean;
};
//# sourceMappingURL=internal-types.d.ts.map