mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
BUGFIX in ITemplateOptions definition
This commit is contained in:
Vendored
+2
-2
@@ -72,7 +72,7 @@ declare module AngularFormly {
|
||||
|
||||
interface ISelectOption {
|
||||
name: string;
|
||||
value: string;
|
||||
value?: string;
|
||||
group?: string;
|
||||
}
|
||||
|
||||
@@ -110,7 +110,7 @@ declare module AngularFormly {
|
||||
[key: string]: any;
|
||||
|
||||
// types for select/radio fields
|
||||
options?: ISelectOption | any;
|
||||
options?: Array<ISelectOption>;
|
||||
groupProp?: string; // default: group
|
||||
valueProp?: string; // default: value
|
||||
labelProp?: string; // default: name
|
||||
|
||||
Reference in New Issue
Block a user