mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-01 09:01:45 +08:00
22 lines
878 B
TypeScript
22 lines
878 B
TypeScript
// Type definitions for babel-template v6.7
|
|
// Project: https://github.com/babel/babel/tree/master/packages/babel-template
|
|
// Definitions by: Troy Gerwien <https://github.com/yortus>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference types="babylon" />
|
|
/// <reference types="babel-types" />
|
|
|
|
|
|
import {BabylonOptions} from 'babylon';
|
|
import * as t from 'babel-types';
|
|
type Node = t.Node;
|
|
|
|
// NB: This export doesn't match the handbook example, where `template` is the default export.
|
|
// But it does match the runtime behaviour (at least at the time of this writing). For some reason,
|
|
// babel-template/lib/index.js has this line at the bottom: module.exports = exports["default"];
|
|
export = template;
|
|
declare function template(code: string, opts?: BabylonOptions): UseTemplate;
|
|
|
|
type UseTemplate = (nodes?: {[placeholder: string]: Node}) => Node;
|
|
|