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>
13 lines
No EOL
340 B
Text
13 lines
No EOL
340 B
Text
/**
|
|
* @license
|
|
* Copyright 2021 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
/** @typedef {import('./dom.js').DOM} DOM */
|
|
/**
|
|
* @param {DOM} dom
|
|
* @param {boolean} [force]
|
|
*/
|
|
export function toggleDarkTheme(dom: DOM, force?: boolean): void;
|
|
export type DOM = import("./dom.js").DOM;
|
|
//# sourceMappingURL=features-util.d.ts.map |