ClusterServerHandlers<C>: Merge<CommandHandlers<C["commands"], AttributeServers<C["attributes"]>, EventServers<C["events"]>>, Merge<AttributeHandlers<C["attributes"]>, {
    destroyClusterServer?: (() => void);
    initializeClusterServer?: ((args: {
        attributes: AttributeServers<C["attributes"]>;
        endpoint: Endpoint;
        events: EventServers<C["events"]>;
    }) => void);
}>>

Type Parameters