import { AbstractBackend } from "./abstract-backend"; import { GetValueFromKeyPath, KeyPath } from "../types"; export class NullBackend extends AbstractBackend { getSnapshot, T extends GetValueFromKeyPath>(keyPath: KP, defaultValue: T): T { return defaultValue; } }