File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ export class EntryQueryable extends BaseQuery {
1515 * @param {string } fieldUid - field uid to select
1616 * @returns {EntryQueryable } - returns EntryQueryable object for chaining method calls
1717 */
18- only ( fieldUid : string | string [ ] ) : EntryQueryable {
18+ only ( fieldUid : string | string [ ] ) : this {
1919 if ( Array . isArray ( fieldUid ) ) {
2020 let i = 0 ;
2121 for ( const uid of fieldUid ) {
@@ -41,7 +41,7 @@ export class EntryQueryable extends BaseQuery {
4141 * @param {string } fieldUid - field uid to exclude
4242 * @returns {EntryQueryable } - returns EntryQueryable object for chaining method calls
4343 */
44- except ( fieldUid : string | string [ ] ) : EntryQueryable {
44+ except ( fieldUid : string | string [ ] ) : this {
4545 if ( Array . isArray ( fieldUid ) ) {
4646 let i = 0 ;
4747 for ( const uid of fieldUid ) {
You can’t perform that action at this time.
0 commit comments