@true-directive/base
Version:
The set of base classes for the TrueDirective Grid
18 lines (17 loc) • 484 B
TypeScript
/**
* Copyright (c) 2018-2019 Aleksey Melnikov, True Directive Company.
* @link https://truedirective.com/
* @license MIT
*/
import { MaskSectionValue } from './mask-section-value.class';
export declare class MaskValue {
inSection: boolean;
sectionPos: number;
before: string;
section: MaskSectionValue;
delimiter: string;
after: string;
nextSectionPos(): number;
update(s: string, selStart: number): string;
value(): string;
}