Skip to content
This repository was archived by the owner on May 1, 2020. It is now read-only.

Commit f922984

Browse files
committed
refactor(deeplinking): get rid of implicit any in code
get rid of implicit any in code
1 parent 1ac7116 commit f922984

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/deep-linking/util.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ function convertRawContentStringToParsedDeepLink(input: string): DeepLinkConfigE
5555
const loadChildrenValue = extractContentWithKnownMatch(input, LOAD_CHILDREN_REGEX);
5656
const nameValue = extractContentWithKnownMatch(input, NAME_REGEX);
5757
const componentValue = extractContentWithKnownMatch(input, COMPONENT_REGEX);
58-
let modulePath = null;
59-
let namedExport = null;
58+
let modulePath: string = null;
59+
let namedExport: string = null;
6060
if (loadChildrenValue) {
6161
const tokens = loadChildrenValue.split(LOAD_CHILDREN_SPLIT_TOKEN);
6262
if (tokens.length === 2) {

0 commit comments

Comments
 (0)