mantine-entity
Version:
A library combining Mantine, TanStack Query, and Mantine React Table for efficient entity management
8 lines (7 loc) • 306 B
TypeScript
export declare function capitalizeTxt(txt: string): string;
export declare function normalizeText(text: string): string;
export declare const toSentenceCase: (str: string) => string;
export declare function analyzeChange(today: number, yesterday: number): {
isHigh: boolean;
percentage: number;
};