Rocky_Mountain_Vending/.pnpm-store/v10/files/16/1623cff0fa8192cef1f4d8f59fc8fae0f4bd23176eb0b368ef37f113781f004a2189e1f1ccdc4a1742690975b3b26a709978412ab4c20954bd0c25ed72d6a5
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

22 lines
No EOL
946 B
Text

/**
* @license
* Copyright 2016 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @param {NonNullable<LH.Artifacts.Manifest['value']>} manifest
* @return {boolean} Does the manifest have any icons?
*/
export function doExist(manifest: NonNullable<LH.Artifacts.Manifest["value"]>): boolean;
/**
* @param {number} sizeRequirement
* @param {NonNullable<LH.Artifacts.Manifest['value']>} manifest
* @return {Array<string>} Value of satisfactory sizes (eg. ['192x192', '256x256'])
*/
export function pngSizedAtLeast(sizeRequirement: number, manifest: NonNullable<LH.Artifacts.Manifest["value"]>): Array<string>;
/**
* @param {NonNullable<LH.Artifacts.Manifest['value']>} manifest
* @return {boolean} Does the manifest icons value contain at least one icon with purpose including "maskable"
*/
export function containsMaskableIcon(manifest: NonNullable<LH.Artifacts.Manifest["value"]>): boolean;
//# sourceMappingURL=icons.d.ts.map