fix Streamjs GroupingResult

GroupingResult return an array of element
Exemple : 
Stream.of({'firstname': 'john', 'lastname':'doe'}).groupBy(obj => obj.lastname)['doe']
=> is an Array
This commit is contained in:
alexandrepetrillo
2017-04-08 17:42:53 +02:00
committed by GitHub
parent e3fa8a2176
commit e71a66fb28

View File

@@ -126,7 +126,7 @@ declare namespace Stream {
}
export interface GroupingResult<T> {
[index: string]: T
[index: string]: T[]
}
export interface Iterator<T> {