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>
16 lines
594 B
Text
16 lines
594 B
Text
import { LocaleData } from './core';
|
|
import { NumberFormatDigitInternalSlots } from './number';
|
|
export type LDMLPluralRule = 'zero' | 'one' | 'two' | 'few' | 'many' | 'other';
|
|
export interface PluralRulesData {
|
|
categories: {
|
|
cardinal: string[];
|
|
ordinal: string[];
|
|
};
|
|
fn: (val: number | string, ord?: boolean) => LDMLPluralRule;
|
|
}
|
|
export type PluralRulesLocaleData = LocaleData<PluralRulesData>;
|
|
export interface PluralRulesInternal extends NumberFormatDigitInternalSlots {
|
|
initializedPluralRules: boolean;
|
|
locale: string;
|
|
type: 'cardinal' | 'ordinal';
|
|
}
|