mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-10 10:52:44 +00:00
9 lines
311 B
TypeScript
9 lines
311 B
TypeScript
// Type definitions for intersperse 1.0
|
|
// Project: https://github.com/curvedmark/intersperse
|
|
// Definitions by: Gary King <https://github.com/garyking>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare function intersperse(items: any[], separator: any): any[];
|
|
|
|
export = intersperse;
|