import Realm, { ObjectSchema } from 'realm' export class OptionsModel extends Realm.Object { key: string; value: string; type: string; static schema: ObjectSchema = { name: 'Options', properties: { key: 'string', value: 'string', type: 'string' }, primaryKey: 'key' } }