MediaNodeStateEvents type

Signature:

export type MediaNodeStateEvents = {
    close: (id: string) => void;
    error: (ev: {
        id: string;
        error: string;
    }) => void;
};