Represents the result of handling a local operation.

interface ILocalHandlerResult<Data extends IAnything = IAnything> {
    change: undefined | (Data: Data, initial: boolean) => void;
    data: null | Data;
}

Type Parameters

Properties

Properties

change: undefined | (Data: Data, initial: boolean) => void
data: null | Data