Interface IPersister<T>

The interface provided by objects that can handle basic persistence, retrieval, and deletion of data in a given data store

interface IPersister<T> {
    Persist(items): void;
    Purge(): void;
    Retrieve(): T[];
}

Type Parameters

  • T

Implemented by

Methods

Generated using TypeDoc