mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
Note that this *trivially* updates project urls by adding the NPM url to the end, even when the urls are almost identical or the DT one is outdated. I'll clean up the urls in a later commit. This PR is unfinished! Please do not merge it yet.
60 lines
1.7 KiB
TypeScript
60 lines
1.7 KiB
TypeScript
// Type definitions for babylon 6.16
|
|
// Project: https://github.com/babel/babylon, https://babeljs.io
|
|
// Definitions by: Troy Gerwien <https://github.com/yortus>
|
|
// Marvin Hagemeister <https://github.com/marvinhagemeister>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.8
|
|
|
|
import { File, Expression } from 'babel-types';
|
|
|
|
export function parse(code: string, opts?: BabylonOptions): File;
|
|
|
|
export function parseExpression(input: string, options?: BabylonOptions): Expression;
|
|
|
|
export interface BabylonOptions {
|
|
/**
|
|
* By default, import and export declarations can only appear at a program's top level.
|
|
* Setting this option to true allows them anywhere where a statement is allowed.
|
|
*/
|
|
allowImportExportEverywhere?: boolean;
|
|
|
|
/**
|
|
* By default, a return statement at the top level raises an error. Set this to true to accept such code.
|
|
*/
|
|
allowReturnOutsideFunction?: boolean;
|
|
|
|
allowSuperOutsideMethod?: boolean;
|
|
|
|
/**
|
|
* Indicate the mode the code should be parsed in. Can be either "script" or "module".
|
|
*/
|
|
sourceType?: 'script' | 'module';
|
|
|
|
/**
|
|
* Correlate output AST nodes with their source filename. Useful when
|
|
* generating code and source maps from the ASTs of multiple input files.
|
|
*/
|
|
sourceFilename?: string;
|
|
|
|
/**
|
|
* Array containing the plugins that you want to enable.
|
|
*/
|
|
plugins?: PluginName[];
|
|
}
|
|
|
|
export type PluginName =
|
|
'estree' |
|
|
'jsx' |
|
|
'flow' |
|
|
'typescript' |
|
|
'classConstructorCall' |
|
|
'doExpressions' |
|
|
'objectRestSpread' |
|
|
'decorators' |
|
|
'classProperties' |
|
|
'exportExtensions' |
|
|
'asyncGenerators' |
|
|
'functionBind' |
|
|
'functionSent' |
|
|
'dynamicImport';
|