Rocky_Mountain_Vending/.pnpm-store/v10/files/10/116a982e2ab565d7a94357128710f87a0da99381abe6ee320aeb7b7183a14211a7c7a350831238f2538ea1aeb5d69aa0dcbb1ffb7fd262e35eafb3f94f3053
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

38 lines
No EOL
1.3 KiB
Text

export default Stacks;
export type JSLibraryDetectorTestResult = false | {
version: string | number | null;
};
export type JSLibraryDetectorTest = {
id: string;
icon: string;
url: string;
/**
* npm module name, if applicable to library.
*/
npm: string | null;
/**
* Returns false if library is not present, otherwise returns an object that contains the library version (set to null if the version is not detected).
*/
test: (arg0: Window) => JSLibraryDetectorTestResult | Promise<JSLibraryDetectorTestResult>;
};
export type JSLibrary = {
id: string;
name: string;
version: string | number | null;
npm: string | null;
};
/** @implements {LH.Gatherer.GathererInstance} */
declare class Stacks extends BaseGatherer implements LH.Gatherer.GathererInstance {
/**
* @param {LH.Gatherer.Driver['executionContext']} executionContext
* @return {Promise<LH.Artifacts['Stacks']>}
*/
static collectStacks(executionContext: LH.Gatherer.Driver["executionContext"]): Promise<LH.Artifacts["Stacks"]>;
/**
* @param {LH.Gatherer.Context} context
* @return {Promise<LH.Artifacts['Stacks']>}
*/
getArtifact(context: LH.Gatherer.Context): Promise<LH.Artifacts["Stacks"]>;
}
import BaseGatherer from '../base-gatherer.js';
//# sourceMappingURL=stacks.d.ts.map