types: remove unnecessary types (#234)

This commit is contained in:
Sangeeth Sudheer 2019-10-13 05:03:48 +05:30 committed by Evan You
parent 9371e65187
commit 96681942c1

View File

@ -45,7 +45,7 @@ export function loadDep(name: string) {
}
}
export const parseJS: typeof parse = (code: string, options: any) => {
export const parseJS: typeof parse = (code, options) => {
assert(
!__BROWSER__,
`Expression AST analysis can only be performed in non-browser builds.`