* Keys within a component's Property set may be configured and * deliminated by property specifications.
| 126 | * deliminated by property specifications. |
| 127 | */ |
| 128 | interface PropSpec { |
| 129 | type?: string; |
| 130 | expects?: Array<any>; |
| 131 | optional?: boolean; |
| 132 | |
| 133 | /** |
| 134 | * A source string links the value of a property to a value which |
| 135 | * must be present in the Application environment. |
| 136 | */ |
| 137 | source?: string; |
| 138 | } |
| 139 | |
| 140 | /** |
| 141 | * A descriptor of Component creation, behavior, and lifecycle. |
nothing calls this directly
no outgoing calls
no test coverage detected