UNPKG

@archon-inc/sdk

Version:

Integrate easily to our government platform using this SDK. More info on https://archon.inc/sdk

9 lines 539 B
import { Resource, ResourceType, ResourceTypeName } from "../types/policy.js"; /** * Search for resources based on type and metadata. * @param resourceType - The type of the resource to search for. * @param metadata - Metadata key-value pairs to filter resources. * @returns A promise resolving to a list of resources matching the criteria. */ export default function searchResources(resourceType: ResourceType | ResourceTypeName, metadata?: Record<string, unknown>): Promise<Resource[]>; //# sourceMappingURL=searchResources.d.ts.map