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

    Type Alias RemoveOfType<Type>

    RemoveOfType: <T extends Thing>(
        thing: T,
        property: Url | UrlString,
        value: Type,
    ) => T

    Type Parameters

    • Type

    Type Declaration

      • <T extends Thing>(thing: T, property: Url | UrlString, value: Type): T
      • Type Parameters

        Parameters

        • thing: T

          Thing to remove a value from.

        • property: Url | UrlString

          Property for which to remove the given value.

        • value: Type

          Value to remove from thing for the given property.

        Returns T

        A new Thing equal to the input Thing with the given value removed for the given Property.