Skip to content

Commit 6d63fcf

Browse files
committed
fix: correct generics in signature
1 parent 85588e1 commit 6d63fcf

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

definitions/standard/runtime_definition/array/std_array_filter.proto.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,5 +67,5 @@
6767
"linkedDataTypeIdentifiers": [
6868
"LIST"
6969
],
70-
"signature": "<R>(list: LIST<T>, predicate: PREDICATE<T>) => LIST<T>"
70+
"signature": "<T>(list: LIST<T>, predicate: PREDICATE<T>) => LIST<T>"
7171
}

definitions/standard/runtime_definition/array/std_array_for_each.proto.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,5 @@
6868
"LIST",
6969
"CONSUMER"
7070
],
71-
"signature": "<T>(list: LIST<T>) => void"
71+
"signature": "<T>(list: LIST<T>, consumer: CONSUMER<T>) => void"
7272
}

definitions/standard/runtime_definition/array/std_array_index_of.proto.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
],
6565
"deprecationMessage": [],
6666
"displayIcon": "tabler:list",
67-
"signature": "<R>(list: LIST<T>, item: T) => NUMBER",
67+
"signature": "<T>(list: LIST<T>, item: T) => NUMBER",
6868
"linkedDataTypeIdentifiers": [
6969
"LIST",
7070
"NUMBER"

0 commit comments

Comments
 (0)