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

    Type Alias Access

    An object with the boolean properties read, append, write and control, representing the respective Access Modes defined by the Web Access Control specification.

    Since that specification is not finalised yet, this interface is still experimental.

    type Access = {
        append: boolean;
        control: boolean;
        read: boolean;
        write: boolean;
    }
    Index

    Properties

    append: boolean
    control: boolean
    read: boolean
    write: boolean