Rocky_Mountain_Vending/.pnpm-store/v10/files/07/e7fad8a1859734f457954706180abee103b53272528b4908c7024d7e139df02df62d5757e01828fca6691e15fa01cf0e229dc7b28b946820b945e0ee1d7d6b
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

1 line
No EOL
774 B
Text

{"version":3,"file":"Constructor.js","sourceRoot":"","sources":["../../../../../../front_end/core/platform/Constructor.ts"],"names":[],"mappings":"AAAA,4DAA4D;AAC5D,yEAAyE;AACzE,6BAA6B","sourcesContent":["// Copyright 2025 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nexport type Constructor<T, Args extends any[] = any[]> = new (...args: Args) => T;\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nexport type AbstractConstructor<T, Args extends any[] = any[]> = (abstract new (...args: Args) => T);\n\nexport type ConstructorOrAbstract<T> = Constructor<T>|AbstractConstructor<T>;\n"]}