UNPKG

@netlify/zip-it-and-ship-it

Version:
6 lines (5 loc) 264 B
import type { Declaration, Expression, Statement } from '@babel/types'; type Bindings = Map<string, Expression | Declaration>; export type BindingMethod = () => Bindings; export declare const createBindingsMethod: (nodes: Statement[]) => BindingMethod; export {};