Rocky_Mountain_Vending/.pnpm-store/v10/files/af/3e26312fab5a3efaed3e52011dae2e20068d48cf0d19f043ed661c91d28bfae754c9bf63e99016576d0d27ce4b2877a67f19bc26a89fa2a530aa227346aa67
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

40 lines
2 KiB
Text

declare function normalizeUrl(url: string, isStringValue: boolean): string;
declare function requestify(url: string, rootContext: string): any;
declare function getFilter(filter: any, resourcePath: string): (...args: any[]) => any;
declare function shouldUseImportPlugin(options: any): any;
declare function shouldUseURLPlugin(options: any): any;
declare function shouldUseModulesPlugins(options: any): boolean;
declare function shouldUseIcssPlugin(options: any): boolean;
declare function getModulesPlugins(options: any, loaderContext: any, meta: any): any[];
declare function normalizeSourceMap(map: any, resourcePath: string): any;
declare function getPreRequester({ loaders, loaderIndex }: any): (number: any) => any;
declare function getImportCode(imports: any, options: any): string;
declare function normalizeSourceMapForRuntime(map: any, loaderContext: any): string;
declare function getModuleCode(result: {
map: any;
css: any;
}, api: any, replacements: any, options: {
modules: {
exportOnlyLocals: boolean;
namedExport: any;
};
sourceMap: any;
}, loaderContext: any): string;
declare function dashesCamelCase(str: string): string;
declare function getExportCode(exports: any, replacements: any, options: {
modules: {
namedExport: any;
exportLocalsConvention: any;
exportOnlyLocals: any;
};
esModule: any;
}): string;
declare function resolveRequests(resolve: (arg0: any, arg1: any) => Promise<any>, context: any, possibleRequests: any[]): Promise<any>;
declare function isUrlRequestable(url: string): boolean;
declare function sort(a: {
index: number;
}, b: {
index: number;
}): number;
declare function isDataUrl(url: string): boolean;
export { isDataUrl, shouldUseModulesPlugins, shouldUseImportPlugin, shouldUseURLPlugin, shouldUseIcssPlugin, normalizeUrl, requestify, getFilter, getModulesPlugins, normalizeSourceMap, getPreRequester, getImportCode, getModuleCode, getExportCode, resolveRequests, isUrlRequestable, sort, normalizeSourceMapForRuntime, dashesCamelCase, };