We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a6dc47 commit ec0f2dcCopy full SHA for ec0f2dc
src/lib/decorators.ts
@@ -208,10 +208,6 @@ export function internalProperty(options?: InternalPropertyDeclaration) {
208
* }
209
210
*
211
- * // external usage
212
- * async doSomethingWithFirst() {
213
- * (await aMyElement.first).doSomething();
214
- * }
215
*/
216
export function query(selector: string) {
217
return (protoOrDescriptor: Object|ClassElement,
@@ -260,6 +256,11 @@ export function query(selector: string) {
260
256
* `;
261
257
262
258
259
+ *
+ * // external usage
+ * async doSomethingWithFirst() {
+ * (await aMyElement.first).doSomething();
263
+ * }
264
265
export function queryAsync(selector: string) {
266
0 commit comments