knx-listener
Version:
A thin client that creates a tunnel to knx gateway to listen to telegrams within knx net
16 lines (15 loc) • 402 B
TypeScript
/**
* Class helper acts as iterrator to access buffer
*/
export declare class SmartCursor {
private cursor;
private memorizedCursor;
constructor(i?: number);
jump(i: number): this;
skip(_field?: string, nextPos?: number): this;
diff(sync?: boolean): number;
memorize(): this;
next(nextPos?: number): number;
readonly memorized: number;
readonly cur: number;
}