Merge pull request #15519 from maxlk/ng-model-options

@types/angular Define debounce option in ng-model-options
This commit is contained in:
Nathan Shively-Sanders 2017-03-30 16:02:56 -07:00 committed by GitHub
commit 51430746a2

View File

@ -413,7 +413,7 @@ declare namespace angular {
// https://docs.angularjs.org/api/ng/directive/ngModelOptions
interface INgModelOptions {
updateOn?: string;
debounce?: any;
debounce?: number | { [key: string]: number; };
allowInvalid?: boolean;
getterSetter?: boolean;
timezone?: string;