@grabjs/superapp-sdk
    Preparing search index...

    Type Alias GetBooleanResult

    Result object containing the boolean value.

    Value exists:

    { value: true }
    

    Value not found:

    { value: null }
    
    type GetBooleanResult = {
        value: boolean | null;
    }
    Index

    Properties

    Properties

    value: boolean | null

    The stored boolean value, or null if not found.