CaseMapper.d.ts (604B)
1 import { CaseMapper } from "icu4x" 2 import { Locale } from "icu4x" 3 import { TitlecaseOptions } from "icu4x" 4 export function lowercase(s: string, localeName: string); 5 export function uppercase(s: string, localeName: string); 6 export function lowercaseWithCompiledData(s: string, localeName: string); 7 export function uppercaseWithCompiledData(s: string, localeName: string); 8 export function titlecaseSegmentWithOnlyCaseData(s: string, localeName: string, optionsLeadingAdjustment: LeadingAdjustment, optionsTrailingCase: TrailingCase); 9 export function fold(s: string); 10 export function foldTurkic(s: string);