patch-pulse
Version:
Check for outdated npm dependencies
21 lines • 455 B
TypeScript
interface PluralizeArgs {
/**
* The count of the word
*/
count: number;
/**
* The singular form of the word
*/
singular: string;
/**
* The plural form of the word
*/
plural: string;
}
/**
* Pluralizes a word based on the count
* @returns The pluralized word
*/
export declare function pluralize({ count, singular, plural }: PluralizeArgs): string;
export {};
//# sourceMappingURL=pluralize.d.ts.map