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>
17 lines
439 B
Text
17 lines
439 B
Text
import type { SigninExtensionConfiguration } from "./extensionConfiguration";
|
|
/**
|
|
* @public
|
|
*/
|
|
export interface RuntimeExtension {
|
|
configure(extensionConfiguration: SigninExtensionConfiguration): void;
|
|
}
|
|
/**
|
|
* @public
|
|
*/
|
|
export interface RuntimeExtensionsConfig {
|
|
extensions: RuntimeExtension[];
|
|
}
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare const resolveRuntimeExtensions: (runtimeConfig: any, extensions: RuntimeExtension[]) => any;
|