@blockchaincommons/envelope-pattern - v1.0.0-beta.2
    Preparing search index...

    Type Alias StructurePattern

    StructurePattern:
        | { type: "Leaf" }
        | { type: "Assertions"; pattern: AssertionsPattern }
        | { type: "Digest"; pattern: DigestPattern }
        | { type: "Node"; pattern: NodePattern }
        | { type: "Object"; pattern: ObjectPattern }
        | { type: "Obscured"; pattern: ObscuredPattern }
        | { type: "Predicate"; pattern: PredicatePattern }
        | { type: "Subject"; pattern: SubjectPattern }
        | { type: "Wrapped"; pattern: WrappedPattern }

    A structure pattern: an element of the envelope tree.

    Type Declaration