Rocky_Mountain_Vending/.pnpm-store/v10/files/b0/cf544f8ea6adbf03d85aa6c9050d90a0f3351cb1f5055b2f3a846fd289ad5767dac781291144f7dc1ecca292c3f97b2842be459ab36ec2baceea8b9ca3ca83
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

6 lines
300 B
Text

export type AfterTask<T = unknown> = Promise<T> | AfterCallback<T>;
export type AfterCallback<T = unknown> = () => T | Promise<T>;
/**
* This function allows you to schedule callbacks to be executed after the current request finishes.
*/
export declare function after<T>(task: AfterTask<T>): void;