Represents an entry in the database with a key-value pair.

interface DataBaseEntry {
    Key: string;
    Value: string;
}

Properties

Properties

Key: string

The key of the database entry.

Value: string

The value associated with the key in the database.