UNPKG

180 BTypeScriptView Raw
1declare module 'listify' {
2 interface ListifyOptions {
3 finalWord: string;
4 }
5 function listify(list: any[], opt?: ListifyOptions): string;
6 export = listify;
7}