@mikuroxina/mini-fn
    Preparing search index...

    Type Alias Event<T>

    An event handler of a Fact.

    type Event<T> = {
        key: string;
        type: typeof eventSymbol;
        value: Handler<T>;
    }

    Type Parameters

    • T
    Index

    Properties

    Properties

    key: string

    The name of the event.

    type: typeof eventSymbol
    value: Handler<T>

    The handler for the event.