mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Add text-mask-addons and text-mask-core types * Add Fix linting issues * Reconcile tsconfigs * Lint fixes Co-authored-by: josh <joshua.hunt@vista.co>
13 lines
462 B
TypeScript
13 lines
462 B
TypeScript
// Type definitions for text-mask-addons 3.8
|
|
// Project: https://github.com/text-mask/text-mask/tree/master/addons/#readme
|
|
// Definitions by: josh <https://github.com/huntjosh>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
import { Pipe } from 'text-mask-core';
|
|
|
|
export interface DatePipeYears {
|
|
minYear: number;
|
|
maxYear: number;
|
|
}
|
|
export function createAutoCorrectedDatePipe(dateFormat?: string, validYears?: DatePipeYears): Pipe;
|