mingo
    Preparing search index...

    Interface Generator

    Represents a stream interface that provides a method to retrieve the next item in a sequence.

    interface Generator {
        next: () => IteratorResult;
    }
    Index

    Properties

    Properties

    next: () => IteratorResult