refactor(core/fetch): optimize perfomance, improve types

This commit is contained in:
2026-03-26 16:10:19 +07:00
parent 4876e04ceb
commit 1db475c982
13 changed files with 8653 additions and 2539 deletions
+5
View File
@@ -2,3 +2,8 @@
* A type that can be either a single value or an array of values
*/
export type Arrayable<T> = T | T[];
/**
* A type that can be either a single value or a readonly array of values
*/
export type ReadonlyArrayable<T> = T | readonly T[];