baked-recipe-admin
Version:
Baked is an opinionated framework for .NET in backend and Nuxt in frontend. This is a recipe package that brings together all the components one needs for an Admin UI.
17 lines (16 loc) • 599 B
TypeScript
export default function _default(): {
asClasses: (path: any, prefix?: string) => any;
asCurrency: (value: any, { shorten, shortenThousands }?: {}) => "-" | {
shortened: boolean;
toString: () => string;
};
asDecimal: (value: any) => any;
asMonth: (date: any) => any;
asNumber: (value: any, { shorten, shortenThousands, formatOptions }?: {}) => "-" | {
shortened: boolean;
toString: () => string;
};
asPercentage: (value: any) => any;
format: (formatString: any, args: any) => any;
truncate: (value: any, length: any) => any;
};