UNPKG

@true-directive/base

Version:

The set of base classes for the TrueDirective Grid

18 lines (17 loc) 458 B
/** * Copyright (c) 2018-2019 Aleksey Melnikov, True Directive Company. * @link https://truedirective.com/ * @license MIT */ export declare class NumberFormat { prefix: string; postfix: string; specifier: string; signum: boolean; intMin: number; intMax: number; fractionMin: number; fractionMax: number; static isDigit(char: string): boolean; static parseFormat(formatTxt: string): NumberFormat; }