Hierarchy (view full)

Constructors

Properties

child?: Blockstore<{}, {}, {}, {}, {}, {}, {}, {}>

Type declaration

    Type declaration

      Type declaration

        Type declaration

          Type declaration

            Type declaration

              Type declaration

                Type declaration

                  Methods

                  • Remove the record for the passed key

                    Parameters

                    Returns Await<void>

                    Example

                    await store.delete(new Key('awesome'))
                    console.log('deleted awesome content :(')
                  • Check for the existence of a value for the passed key

                    Parameters

                    Returns Await<boolean>

                    Example

                    const exists = await store.has(new Key('awesome'))

                    if (exists) {
                    console.log('it is there')
                    } else {
                    console.log('it is not there')
                    }