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>
54 lines
1.9 KiB
Text
54 lines
1.9 KiB
Text
/**
|
|
* These are types for things that are present in the `experimental` builds of React but not yet
|
|
* on a stable build.
|
|
*
|
|
* Once they are promoted to stable they can just be moved to the main index file.
|
|
*
|
|
* To load the types declared here in an actual project, there are three ways. The easiest one,
|
|
* if your `tsconfig.json` already has a `"types"` array in the `"compilerOptions"` section,
|
|
* is to add `"react-dom/experimental"` to the `"types"` array.
|
|
*
|
|
* Alternatively, a specific import syntax can to be used from a typescript file.
|
|
* This module does not exist in reality, which is why the {} is important:
|
|
*
|
|
* ```ts
|
|
* import {} from 'react-dom/experimental'
|
|
* ```
|
|
*
|
|
* It is also possible to include it through a triple-slash reference:
|
|
*
|
|
* ```ts
|
|
* /// <reference types="react-dom/experimental" />
|
|
* ```
|
|
*
|
|
* Either the import or the reference only needs to appear once, anywhere in the project.
|
|
*/
|
|
|
|
// See https://github.com/facebook/react/blob/main/packages/react-dom/index.experimental.js to see how the exports are declared,
|
|
// but confirm with published source code (e.g. https://unpkg.com/react-dom@experimental) that these exports end up in the published code
|
|
|
|
import React = require("react");
|
|
import ReactDOM = require("./canary");
|
|
|
|
export {};
|
|
|
|
declare const UNDEFINED_VOID_ONLY: unique symbol;
|
|
type VoidOrUndefinedOnly = void | { [UNDEFINED_VOID_ONLY]: never };
|
|
|
|
declare module "." {
|
|
}
|
|
|
|
declare module "react" {
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
|
interface GestureProvider extends AnimationTimeline {}
|
|
}
|
|
|
|
declare module "./client" {
|
|
type TransitionIndicatorCleanup = () => VoidOrUndefinedOnly;
|
|
interface RootOptions {
|
|
onDefaultTransitionIndicator?: (() => void | TransitionIndicatorCleanup) | undefined;
|
|
}
|
|
interface HydrationOptions {
|
|
onDefaultTransitionIndicator?: (() => void | TransitionIndicatorCleanup) | undefined;
|
|
}
|
|
}
|