DefinitelyTyped/types/codegen.macro/index.d.ts
2019-07-03 08:29:34 -07:00

8 lines
323 B
TypeScript

// Type definitions for codegen.macro 3.0
// Project: https://github.com/kentcdodds/codegen.macro
// Definitions by: Charlee Li <https://github.com/charlee>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare function codegen(strings: TemplateStringsArray, ...values: any[]): any;
export = codegen;