Skip to content

Commit

Permalink
update unsafe declaration merging for Queryable
Browse files Browse the repository at this point in the history
update unsafe declaration merging for Queryable
  • Loading branch information
bcameron1231 committed Dec 10, 2023
1 parent 1b3b6fa commit 4fb0254
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/queryable/queryable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ export type QueryableInit = Queryable<any> | string | [Queryable<any>, string];

@extendable()
@invokable()
// eslint-disable-next-line @typescript-eslint/no-unsafe-declaration-merging
export class Queryable<R> extends Timeline<typeof DefaultMoments> implements IQueryableInternal<R> {

// tracks any query paramters which will be appended to the request url
Expand Down
2 changes: 2 additions & 0 deletions test/queryable/queryable.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* eslint-disable @typescript-eslint/no-unsafe-declaration-merging */

import { expect } from "chai";
import {
Queryable,
Expand Down

0 comments on commit 4fb0254

Please sign in to comment.