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>
6 lines
300 B
Text
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;
|