Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
marcin mikołajczak
2024-08-29 22:48:58 +02:00
parent fbcbe3fe1e
commit d91b55d9b1
28 changed files with 34 additions and 91 deletions

View File

@@ -1,7 +0,0 @@
/**
* Resolve a type into a flat POJO interface if it's been wrapped by generics.
* https://gleasonator.com/@alex/posts/AWfK4hyppMDCqrT2y8
*/
type Resolve<T> = Pick<T, keyof T>;
export type { Resolve };

View File

@@ -19,7 +19,5 @@ const buildFullPath = (requestedURL: string, baseURL?: string, params?: Record<s
};
export {
isAbsoluteURL,
combineURLs,
buildFullPath,
};