Skip to content

Commit

Permalink
fix: [skip ci] consistent naming
Browse files Browse the repository at this point in the history
  • Loading branch information
xtuc committed Sep 3, 2018
1 parent 0e8830f commit 6893b7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/babel-parser/typings/babel-parser.d.ts
Expand Up @@ -8,12 +8,12 @@
/**
* 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.
*/
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 {
/**
Expand Down

0 comments on commit 6893b7e

Please sign in to comment.