@inrupt/solid-client
Version:
Make your web apps work with Solid Pods.
10 lines (9 loc) • 422 B
TypeScript
import type { WithAccessibleAcr } from "../acp";
import type { AccessControlResource } from "../type/AccessControlResource";
/**
* @hidden
*
* Internal function that attaches an ACR to a Resource. Prefer using this than
* setting the internal values manually (easier to refactor when changing the internals).
*/
export declare function setAcr<T extends WithAccessibleAcr>(resource: T, acr: AccessControlResource): T;