forked from tools/josh
1
0
Fork 0
josh/src/js/extensions.d.ts

8 lines
134 B
TypeScript
Raw Normal View History

interface String {
trimLines(): string;
}
interface Array<T> {
2019-10-21 17:07:16 +02:00
sortAlphabetically(transform: (element: T) => string): T[];
}