misuzu/assets/typescript/Common.ts

3 lines
72 B
TypeScript

interface Array<T> {
find(predicate: (search: T) => boolean) : T;
}