Skip to content

Commit

Permalink
v1.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
rkuykendall committed Jan 29, 2020
1 parent 03f6233 commit 8728249
Show file tree
Hide file tree
Showing 5 changed files with 5,850 additions and 7,125 deletions.
4 changes: 2 additions & 2 deletions dist/formatting.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export declare function getNameOrDefault(obj?: unknown, { field, defaultValue }?
export declare function getOrDefault(value?: any): any;
export declare function formatSocialSecurityNumber(value?: null | string): string;
export declare function formatEmployerIdNumber(value?: null | string): string;
export declare function formatPercentage(value: null | number | string, decimalPoints?: number): string;
export declare function formatPercentage(value?: null | number | string, decimalPoints?: number): string;
export declare function formatMoney(value?: null | number | string): string;
export declare function formatParagraphs(value?: null | string): "--" | JSX.Element[];
export declare function formatCommaSeparatedNumber(value?: null | number | string): string;
Expand All @@ -27,7 +27,7 @@ export declare function mapBooleanToText(bool?: boolean | null, { mapUndefinedTo
}): "--" | "Yes" | "No";
export declare function formatMoneyInput(value?: null | number | string): number | null | undefined;
export declare function formatDuration(iso8601?: null | string): string;
export declare function formatWebsite(website: string | undefined, text?: string): (string | JSX.Element);
export declare function formatWebsite(website?: string | null, text?: string): (string | JSX.Element);
export declare function stripNonAlpha(str?: string | null): string;
export declare function pluralize(baseWord: string, pluralSuffix: string, count: number): string;
export declare function getType(fullType?: null | string): string | null | undefined;
Expand Down
Loading

0 comments on commit 8728249

Please sign in to comment.