SimpleProxy
SimpleProxy
Represents a simple proxy object that mirrors a target object.
Signature
interface SimpleProxy<T extends object> {
    proxy: T;
    setTarget(newTarget: T): void;
}
Represents a simple proxy object that mirrors a target object.
interface SimpleProxy<T extends object> {
    proxy: T;
    setTarget(newTarget: T): void;
}