@abaplint/runtime
Version:
Transpiler - Runtime
16 lines (15 loc) • 417 B
TypeScript
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 {};