Faire un itérateur d'interface dactylographié

interface Iterable<T> {
    [Symbol.iterator](): Iterator<T>;
}
Arrogant Alpaca