tsbase
    Preparing search index...

    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: T[]): void;
        Purge(): void;
        Retrieve(): T[];
    }

    Type Parameters

    • T

    Implemented by

    Index

    Methods