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 {
15
15
* @param {string } fieldUid - field uid to select
16
16
* @returns {EntryQueryable } - returns EntryQueryable object for chaining method calls
17
17
*/
18
- only ( fieldUid : string | string [ ] ) : EntryQueryable {
18
+ only ( fieldUid : string | string [ ] ) : this {
19
19
if ( Array . isArray ( fieldUid ) ) {
20
20
let i = 0 ;
21
21
for ( const uid of fieldUid ) {
@@ -41,7 +41,7 @@ export class EntryQueryable extends BaseQuery {
41
41
* @param {string } fieldUid - field uid to exclude
42
42
* @returns {EntryQueryable } - returns EntryQueryable object for chaining method calls
43
43
*/
44
- except ( fieldUid : string | string [ ] ) : EntryQueryable {
44
+ except ( fieldUid : string | string [ ] ) : this {
45
45
if ( Array . isArray ( fieldUid ) ) {
46
46
let i = 0 ;
47
47
for ( const uid of fieldUid ) {
You can’t perform that action at this time.
0 commit comments