/** * Commonly used operations within data services. * * Each value represents a standard CRUD style method * that can be implemented by a service. */ export declare enum DyNTS_DSF { /** Retrieve all documents from the store. */ getAll = "getAll", /** Load a single document by its identifier. */ getDataById = "getDataById", /** Update an existing document. */ modifyData = "modifyData", /** Remove a document. */ deleteData = "deleteData", /** Return data supplied directly rather than fetched. */ getProvidedData = "getProvidedData" } //# sourceMappingURL=data-service-function.enum.d.ts.map