4 lines
72 B
TypeScript
4 lines
72 B
TypeScript
|
interface Array<T> {
|
||
|
find(predicate: (search: T) => boolean) : T;
|
||
|
}
|