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>
13 lines
No EOL
645 B
Text
13 lines
No EOL
645 B
Text
export { MainThreadTasksComputed as MainThreadTasks };
|
|
declare const MainThreadTasksComputed: typeof MainThreadTasks & {
|
|
request: (dependencies: import("../index.js").Trace, context: LH.Artifacts.ComputedContext) => Promise<import("../lib/tracehouse/main-thread-tasks.js").TaskNode[]>;
|
|
};
|
|
declare class MainThreadTasks {
|
|
/**
|
|
* @param {LH.Trace} trace
|
|
* @param {LH.Artifacts.ComputedContext} context
|
|
* @return {Promise<Array<LH.Artifacts.TaskNode>>}
|
|
*/
|
|
static compute_(trace: LH.Trace, context: LH.Artifacts.ComputedContext): Promise<Array<LH.Artifacts.TaskNode>>;
|
|
}
|
|
//# sourceMappingURL=main-thread-tasks.d.ts.map |