import { Column, Entity, PrimaryColumn } from 'typeorm'; /** * This entity represents a single store value, identified by its key. */ @Entity() export class StoreValue { /** * the key */ @PrimaryColumn() public key: StoreKey | string = ''; /** * the value */ @Column('simple-json') public value: unknown; }