Interface MutexData<T>

Source
Expand description

Represents the data protected by a mutex.

interface MutexData<T> {
    value: T;
}

Properties§

Source§

public value: T