mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* 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
10 lines
398 B
TypeScript
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;
|