DefinitelyTyped/types/falafel/index.d.ts
delprzemo 7be483f054 Falafel (#33804)
* Add types for falafel package

* Fix code smells for falafel type

* Remove code smells in falafel typing

* Fix code smells for falafel typing

* Fix code smells for falafel typing
2019-03-12 10:51:42 -07:00

10 lines
398 B
TypeScript

// Type definitions for falafel 2.1
// Project: https://github.com/substack/node-falafel
// Definitions by: Przemysław Struciński <https://github.com/delprzemo>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.8
declare function falafel(src: string, opts: ((...args: any[]) => void) | object, fn?: (...args: any[]) => void): string;
export = falafel;