@microsoft/useragent-sdk
Version:
SDK for building decentralized identity wallets and enterprise agents.
10 lines (9 loc) • 366 B
TypeScript
import { IHubObjectQueryOptions } from '@decentralized-identity/hub-common-js';
import HubRequest from './HubRequest';
/**
* Represents a request to a Hub to query the available objects.
*/
export default class HubObjectQueryRequest extends HubRequest {
private readonly _isObjectQueryRequest;
constructor(queryOptions: IHubObjectQueryOptions);
}