Skip to content

Commit eb43349

Browse files
GalMunGralfloryst
authored andcommitted
fix: add missing default export
1 parent 6e947b3 commit eb43349

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Sources/Common/Core/URLExtract/index.d.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,12 @@ export function extractURLParameters(
1313
* @param {String} str The type value as string.
1414
*/
1515
export function toNativeType(str: string): void;
16+
17+
declare const _default: {
18+
toNativeType(str: string): any;
19+
extractURLParameters(
20+
castToNativeType?: boolean,
21+
query?: string
22+
): Record<string, any>;
23+
};
24+
export default _default;

0 commit comments

Comments
 (0)