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>
23 lines
No EOL
871 B
Text
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 |