RevisionCollection
Contents
[
Hide
]RevisionCollection class
Represents all revision logs.
class RevisionCollection implements Iterable<Revision>;
Methods
| Method | Description |
|---|---|
| get(number) | Gets Revision by the index. |
| getCount() | @deprecated. Please use the ‘count’ property instead. Gets the number of elements contained in. |
| isNull() | Checks whether the implementation object is null. |
[Symbol.iterator](): Iterator<Revision>
Returns an iterator over the items in the collection. Enables use of for...of, spread syntax, and Array.from().
get(number)
Gets Revision by the index.
get(index: number) : Revision;
Parameters:
| Parameter | Type | Description |
|---|---|---|
| index | number |
Returns
getCount()
@deprecated. Please use the ‘count’ property instead. Gets the number of elements contained in.
getCount() : number;
isNull()
Checks whether the implementation object is null.
isNull() : boolean;