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>
10 lines
No EOL
930 B
Text
10 lines
No EOL
930 B
Text
/** @typedef {'3pFilter'|'audit'|'categoryHeader'|'chevron'|'clump'|'crc'|'crcChain'|'elementScreenshot'|'explodeyGauge'|'footer'|'fraction'|'gauge'|'heading'|'metric'|'scorescale'|'scoresWrapper'|'snippet'|'snippetContent'|'snippetHeader'|'snippetLine'|'styles'|'topbar'|'warningsToplevel'} ComponentName */
|
|
/**
|
|
* @param {DOM} dom
|
|
* @param {ComponentName} componentName
|
|
* @return {DocumentFragment}
|
|
*/
|
|
export function createComponent(dom: DOM, componentName: ComponentName): DocumentFragment;
|
|
export type DOM = import("./dom.js").DOM;
|
|
export type ComponentName = "3pFilter" | "audit" | "categoryHeader" | "chevron" | "clump" | "crc" | "crcChain" | "elementScreenshot" | "explodeyGauge" | "footer" | "fraction" | "gauge" | "heading" | "metric" | "scorescale" | "scoresWrapper" | "snippet" | "snippetContent" | "snippetHeader" | "snippetLine" | "styles" | "topbar" | "warningsToplevel";
|
|
//# sourceMappingURL=components.d.ts.map |