mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-06 16:20:26 +08:00
Fixed misspelling and added indexer in 'polymer'.
This commit is contained in:
Vendored
+8
-6
@@ -11,15 +11,17 @@ declare module polymer {
|
||||
|
||||
interface PropObjectType {
|
||||
type: PropConstructorType;
|
||||
value?:boolean|number|string|Function;
|
||||
reflectToAttributes?:boolean;
|
||||
notify?:boolean;
|
||||
readOnly?:boolean;
|
||||
observer?:string;
|
||||
computed?:string;
|
||||
value?: boolean | number | string | Function;
|
||||
reflectToAttribute?: boolean;
|
||||
readOnly?: boolean;
|
||||
notify?: boolean;
|
||||
computed?: string;
|
||||
observer?: string;
|
||||
}
|
||||
|
||||
interface Base {
|
||||
/** Need to allow all properties for callback methods. */
|
||||
[prop: string]: any;
|
||||
|
||||
/* polymer-micro */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user