UNPKG

bb-inline-editor

Version:

Follow me [![twitter](https://img.shields.io/twitter/follow/carlillo.svg?style=social&label=%20carlillo)](https://twitter.com/carlillo) to be notified about new releases.

16 lines (12 loc) 414 B
import { SelectOptions } from "./select-options.interface"; import { RegexTestable, Selectable, LengthTestable } from "./input-configs"; export interface InputRegexTestable extends RegexTestable { pattern: string | RegExp; } export interface InputSelectable extends Selectable { options: SelectOptions; } export interface InputLengthTestable extends LengthTestable { min: number; max: number; }