Interface ContentLinesArrayLike

interface ContentLinesArrayLike {
    [iterator]: (() => IterableIterator<string>);
    getLineContent: ((line) => string);
    length: number;
    [n: number]: string;
}

Hierarchy (view full)

Indexable

[n: number]: string

Properties

[iterator]: (() => IterableIterator<string>)

Type declaration

    • (): IterableIterator<string>
    • Returns IterableIterator<string>

getLineContent: ((line) => string)

Type declaration

    • (line): string
    • Parameters

      • line: number

      Returns string

length: number