Rocky_Mountain_Vending/.pnpm-store/v10/files/bc/cd201e23509b083c4fddc19b53df2c42ec596c2ad217f1198e071e71757a504347da8c6285487103a0179fceb441a254a2d8eab47d64563dce393fcef6ab41
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
640 B
Text

/**
* Returns all packs that match the stacks found in the page.
* @param {LH.Artifacts['Stacks']|undefined} pageStacks
* @return {LH.RawIcu<Array<LH.Result.StackPack>>}
*/
export function getStackPacks(pageStacks: LH.Artifacts["Stacks"] | undefined): LH.RawIcu<Array<LH.Result.StackPack>>;
/**
* Pairs consisting of a stack pack's ID and the set of stacks needed to be
* detected in a page to display that pack's advice.
* @type {Array<{packId: string, requiredStacks: Array<string>}>}
*/
export const stackPacksToInclude: Array<{
packId: string;
requiredStacks: Array<string>;
}>;
//# sourceMappingURL=stack-packs.d.ts.map