@archon-inc/sdk
Version:
Integrate easily to our government platform using this SDK. More info on https://archon.inc/sdk
8 lines • 376 B
TypeScript
import { ARID, Resource } from "../types/policy.js";
/**
* Retrieve a resource by its ARID.
* @param arid - The Archon Resource Identifier (ARID) of the resource to retrieve.
* @returns A promise resolving to the resource, or null if not found.
*/
export default function getResourceById(arid: ARID): Promise<Resource | null>;
//# sourceMappingURL=getResourceById.d.ts.map