mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-12 04:50:18 +00:00
Merge pull request #7860 from aluanhaddad/patch-2
Changed ITemplateOptions.{onChange, onBlue, etc.} to string | ITemplateOptions
This commit is contained in:
Vendored
+7
-7
@@ -101,13 +101,13 @@ declare module AngularFormly {
|
||||
type?: string;
|
||||
|
||||
//expression types
|
||||
onBlur?: string;
|
||||
onChange?: string;
|
||||
onClick?: string;
|
||||
onFocus?: string;
|
||||
onKeydown?: string;
|
||||
onKeypress?: string;
|
||||
onKeyup?: string;
|
||||
onBlur?: string | IExpressionFunction;
|
||||
onChange?: string | IExpressionFunction;
|
||||
onClick?: string | IExpressionFunction;
|
||||
onFocus?: string | IExpressionFunction;
|
||||
onKeydown?: string | IExpressionFunction;
|
||||
onKeypress?: string | IExpressionFunction;
|
||||
onKeyup?: string | IExpressionFunction;
|
||||
|
||||
//Bootstrap types
|
||||
label?: string;
|
||||
|
||||
Reference in New Issue
Block a user