Hex Core JS
    Preparing search index...

    Type Alias BoundaryOptions

    Type to determine whether an interval should be open or closed on either end. e.g.

    { includeStart: true, includeEnd: false }  -> [---)
    
    type BoundaryOptions = {
        includeEnd: boolean;
        includeStart: boolean;
    }
    Index

    Properties

    includeEnd: boolean
    includeStart: boolean