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 aa75c39 commit 733a8fdCopy full SHA for 733a8fd
src/Typesense/CurationSet.ts
@@ -12,7 +12,10 @@ export default class CurationSet {
12
private readonly _items: CurationSetItems;
13
private individualItems: Record<string, CurationSetItem> = {};
14
15
- constructor(private name: string, private apiCall: ApiCall) {
+ constructor(
16
+ private name: string,
17
+ private apiCall: ApiCall,
18
+ ) {
19
this._items = new CurationSetItems(this.name, apiCall);
20
}
21
@@ -51,5 +54,3 @@ export default class CurationSet {
51
54
return `${CurationSets.RESOURCEPATH}/${encodeURIComponent(this.name)}`;
52
55
53
56
-
src/Typesense/CurationSets.ts
@@ -58,5 +58,3 @@ export default class CurationSets {
58
);
59
60
61
62
0 commit comments