UNPKG

@abaplint/runtime

Version:
16 lines (15 loc) 417 B
import { ICharacter } from "./types/_character"; import { INumeric } from "./types/_numeric"; type options = { timestamp?: string; date?: string; time?: string; pad?: string; width?: number; decimals?: number; currency?: any; style?: any; align?: "left" | "right"; }; export declare function templateFormatting(source: ICharacter | INumeric, options?: options): string; export {};