Fix to correct type

This commit is contained in:
nju33
2017-12-14 16:31:46 +09:00
parent 4add6500cd
commit 88d2e21cdd

View File

@@ -3,6 +3,6 @@
// Definitions by: nju33 <https://github.com/nju33>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare function pupa(tpl: string, data: any[] | {[key: string]: any}): string | never;
declare function pupa(tpl: string, data: any[] | {[key: string]: any}): string;
export = pupa;