@types/babel-template
Version:
TypeScript definitions for babel-template
31 lines (23 loc) • 1.39 kB
Markdown
# Installation
> `npm install --save @types/babel-template`
# Summary
This package contains type definitions for babel-template (https://github.com/babel/babel/tree/master/packages/babel-template).
# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/babel-template.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/babel-template/index.d.ts)
````ts
import * as t from "babel-types";
import { BabylonOptions } from "babylon";
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;
````
### Additional Details
* Last updated: Mon, 06 Nov 2023 22:41:04 GMT
* Dependencies: [@types/babel-types](https://npmjs.com/package/@types/babel-types), [@types/babylon](https://npmjs.com/package/@types/babylon)
# Credits
These definitions were written by [Troy Gerwien](https://github.com/yortus), and [Marvin Hagemeister](https://github.com/marvinhagemeister).