Rocky_Mountain_Vending/.pnpm-store/v10/files/3a/89f7713cea519f785624270f5b8db0fac999f4f5e7a117fefe7e37a0651100384c2c9066f7ee9a510e18e5de22825ed2d41515ebde3a040208086f3b8fae28
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

9 lines
272 B
Text

/**
* Partition a pattern into a list of literals and placeholders
* https://tc39.es/ecma402/#sec-partitionpattern
* @param pattern
*/
export declare function PartitionPattern<T extends string>(pattern: string): Array<{
type: T;
value: string | undefined;
}>;