convert @babel/helper-function-name to TypeScript (#12486)

Co-authored-by: Huáng Jùnliàng <jlhwung@gmail.com>
This commit is contained in:
Bogdan Savluk
2020-12-15 23:19:58 +01:00
committed by GitHub
parent 0ea065014b
commit 4f1df9a713
2 changed files with 17 additions and 4 deletions

View File

@@ -157,3 +157,10 @@ declare module "@babel/helper-validator-option" {
arr: $ReadonlyArray<string>
): string;
}
declare module "@babel/helper-function-name" {
declare export default function helperFunctionNamefunction(
options: any,
localBinding?: boolean
): any;
}