mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-26 07:22:21 +00:00
5 lines
101 B
TypeScript
5 lines
101 B
TypeScript
|
// export abstract class Iterator<T> {
|
||
|
// abstract get done(): bool;
|
||
|
// abstract next(): T;
|
||
|
// }
|