Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(core): correct type for opts.read #37626

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions packages/core/src/metadata/di.ts
Expand Up @@ -140,7 +140,7 @@ export interface ContentChildrenDecorator {
*
* * **selector** - The directive type or the name used for querying.
* * **descendants** - True to include all descendants, otherwise include only direct children.
* * **read** - True to read a different token from the queried elements.
* * **read** - Used to read a different token from the queried elements.
*
* @usageNotes
*
Expand Down Expand Up @@ -206,7 +206,7 @@ export interface ContentChildDecorator {
* **Metadata Properties**:
*
* * **selector** - The directive type or the name used for querying.
* * **read** - True to read a different token from the queried element.
* * **read** - Used to read a different token from the queried element.
* * **static** - True to resolve query results before change detection runs,
* false to resolve after change detection. Defaults to false.
*
Expand Down Expand Up @@ -267,7 +267,7 @@ export interface ViewChildrenDecorator {
* **Metadata Properties**:
*
* * **selector** - The directive type or the name used for querying.
* * **read** - True to read a different token from the queried elements.
* * **read** - Used to read a different token from the queried elements.
*
* @usageNotes
*
Expand Down Expand Up @@ -322,7 +322,7 @@ export interface ViewChildDecorator {
* **Metadata Properties**:
*
* * **selector** - The directive type or the name used for querying.
* * **read** - True to read a different token from the queried elements.
* * **read** - Used to read a different token from the queried elements.
* * **static** - True to resolve query results before change detection runs,
* false to resolve after change detection. Defaults to false.
*
Expand Down