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>
18 lines
467 B
Text
18 lines
467 B
Text
import { LocaleData } from './core';
|
|
export type ListPatternLocaleData = LocaleData<ListPatternFieldsData>;
|
|
export interface ListPatternFieldsData {
|
|
conjunction?: ListPatternData;
|
|
disjunction?: ListPatternData;
|
|
unit?: ListPatternData;
|
|
}
|
|
export interface ListPattern {
|
|
start: string;
|
|
middle: string;
|
|
end: string;
|
|
pair: string;
|
|
}
|
|
export interface ListPatternData {
|
|
long: ListPattern;
|
|
short?: ListPattern;
|
|
narrow?: ListPattern;
|
|
}
|