mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-22 03:37:53 +08:00
* add babel v6 definitions (6 modules) - babel-core - babel-generator - babel-template - babel-traverse - babel-types - babylon * fix failing tests - remove nullable annotations (not supported in tsc1.8.7) - explicit 'any' - remove property type guard (not supported in tsc1.8.7)
22 lines
974 B
TypeScript
22 lines
974 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 path="../babylon/babylon.d.ts" />
|
|
/// <reference path="../babel-types/babel-types.d.ts" />
|
|
|
|
declare module "babel-template" {
|
|
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;
|
|
function template(code: string, opts?: BabylonOptions): UseTemplate;
|
|
|
|
type UseTemplate = (nodes?: {[placeholder: string]: Node}) => Node;
|
|
}
|