fix: [skip ci] consistent naming

This commit is contained in:
Sven Sauleau 2018-09-03 08:09:26 +02:00 committed by GitHub
parent 0e8830f3a8
commit 6893b7e7d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,12 +8,12 @@
/** /**
* Parse the provided code as an entire ECMAScript program. * Parse the provided code as an entire ECMAScript program.
*/ */
export function parse(code: string, options?: ParserOptions): import('@babel/types').File; export function parse(input: string, options?: ParserOptions): import('@babel/types').File;
/** /**
* Parse the provided code as a single expression. * Parse the provided code as a single expression.
*/ */
export function parseExpression(code: string, options?: ParserOptions): import('@babel/types').Expression; export function parseExpression(input: string, options?: ParserOptions): import('@babel/types').Expression;
export interface ParserOptions { export interface ParserOptions {
/** /**