Skip to content

Commit 913d561

Browse files
GalMunGralfloryst
authored andcommitted
refactor: simplify type annotations
1 parent eb43349 commit 913d561

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

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

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,7 @@ export function extractURLParameters(
1515
export function toNativeType(str: string): void;
1616

1717
declare const _default: {
18-
toNativeType(str: string): any;
19-
extractURLParameters(
20-
castToNativeType?: boolean,
21-
query?: string
22-
): Record<string, any>;
18+
toNativeType: typeof toNativeType;
19+
extractURLParameters: typeof extractURLParameters;
2320
};
2421
export default _default;

0 commit comments

Comments
 (0)