@inrupt/solid-client
    Preparing search index...

    Type Alias EffectiveAccess

    What access the current user has to a particular Resource, and what access everybody has.

    Note that access for everybody is at the time of writing not returned by servers implementing Access Control Policies, so the public property is only available on servers that implement Web Access Control.

    1.7.0

    type EffectiveAccess = {
        public?: { append: boolean; read: boolean; write: boolean };
        user: { append: boolean; read: boolean; write: boolean };
    }
    Index

    Properties

    Properties

    public?: { append: boolean; read: boolean; write: boolean }
    user: { append: boolean; read: boolean; write: boolean }