@suluk/provision - v0.2.0
    Preparing search index...

    Interface StateStore

    The persisted provision journal (desired-vs-live diffing). The default store is a JSON file; a test passes memory.

    interface StateStore {
        load(): InstanceState[] | Promise<InstanceState[]>;
        save(state: InstanceState[]): void | Promise<void>;
    }
    Index

    Methods

    Methods