Arc.React.MVVM
    Preparing search index...

    Interface IHandleProps<T>

    Represents a component that can handle props, typically a viewModel.

    interface IHandleProps<T = object> {
        handleProps(props: T): void;
    }

    Type Parameters

    • T = object
    Index

    Methods

    Methods

    • Handle props.

      Parameters

      • props: T

        Props to handle.

      Returns void