UNPKG

@true-directive/base

Version:

The set of base classes for the TrueDirective Grid

19 lines (18 loc) 570 B
/** * Copyright (c) 2018-2019 Aleksey Melnikov, True Directive Company. * @link https://truedirective.com/ * @license MIT */ import { MaskSectionType } from './mask-section-type.class'; export declare class MaskSettings { placeholder: string; replaceMode: boolean; autoCorrect: boolean; appendPlaceholders: boolean; allowIncomplete: boolean; incDecByArrows: boolean; defaultOptions: boolean; sectionTypes: Array<MaskSectionType>; constructor(placeholder: string, // Placeholder char replaceMode?: boolean); }