Arc.React.MVVM
    Preparing search index...

    Interface IHandleQueryParams<T>

    Represents a component that can handle query parameters, typically a viewModel.

    interface IHandleQueryParams<T = object> {
        handleQueryParams(queryParams: T): void;
    }

    Type Parameters

    • T = object
    Index

    Methods

    • Handle query params.

      Parameters

      • queryParams: T

        Query Params to handle.

      Returns void