@baleada/logic 0.24.20 → 0.24.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.d.ts +2 -2
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as perfect_freehand from 'perfect-freehand';
|
|
2
2
|
import { getStroke, StrokeOptions } from 'perfect-freehand';
|
|
3
|
-
import ky, { Options as Options$1 } from 'ky';
|
|
3
|
+
import ky, { Options as Options$1, KyInstance } from 'ky';
|
|
4
4
|
import { ClassValue } from 'clsx';
|
|
5
5
|
import { FullOptions, sortKind, MatchData } from 'fast-fuzzy';
|
|
6
6
|
import { Config } from 'dompurify';
|
|
@@ -1237,7 +1237,7 @@ declare class Fetchable<ResolveableValue> {
|
|
|
1237
1237
|
set resource(resource: string);
|
|
1238
1238
|
get status(): FetchableStatus;
|
|
1239
1239
|
private computedKy;
|
|
1240
|
-
get ky():
|
|
1240
|
+
get ky(): KyInstance;
|
|
1241
1241
|
private computedAbortController;
|
|
1242
1242
|
get abortController(): AbortController;
|
|
1243
1243
|
private computedRetryCount;
|