mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
9 lines
320 B
TypeScript
9 lines
320 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<T, U>(items: T[], separator: U): Array<T | U>;
|
|
|
|
export = intersperse;
|