Rocky_Mountain_Vending/.pnpm-store/v10/files/18/777f7cb37ff459406223cf95bdd79fafdb760ab2778476e414b6924e6279f106c7e2b7612493d70519e0b784d2ff08f08043920ae634faf4d67ee9a2297202
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

23 lines
No EOL
871 B
Text

/**
* @license
* Copyright 2020 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @fileoverview A collection of general type verification functions for dealing
* with external data. If these grow in scope they could be auto-generated with
* something like `io-ts`, but it's not worth the complexity yet.
*/
/**
* Type predicate verifying `val` is an object (excluding `Array` and `null`).
* @param {unknown} val
* @return {val is Record<string, unknown>}
*/
export function isObjectOfUnknownValues(val: unknown): val is Record<string, unknown>;
/**
* Type predicate verifying `val` is an object or an array.
* @param {unknown} val
* @return {val is Record<string, unknown>|Array<unknown>}
*/
export function isObjectOrArrayOfUnknownValues(val: unknown): val is Record<string, unknown> | Array<unknown>;
//# sourceMappingURL=type-verifiers.d.ts.map