Provides an overloaded Writable store interface for TJSPosition.set.

interface WritableExt {
    set(
        this: void,
        value: TJSPositionDataRelative,
        options?: TJSPosition.Options.Set,
    ): TJSPosition;
    subscribe(
        this: void,
        run: Subscriber<TJSPositionDataRelative>,
        invalidate?: Invalidator<TJSPositionDataRelative>,
    ): Unsubscriber;
    update(this: void, updater: Updater<TJSPositionDataRelative>): void;
}
Implemented by
Hierarchy

Methods