Type Alias XcmPalletQueryStatus

XcmPalletQueryStatus: Enum<
    {
        Pending: {
            maybe_match_querier?: XcmVersionedLocation;
            maybe_notify?: FixedSizeBinary<2>;
            responder: XcmVersionedLocation;
            timeout: number;
        };
        Ready: { at: number; response: XcmVersionedResponse };
        VersionNotifier: { is_active: boolean; origin: XcmVersionedLocation };
    },
>