Files
standardnotes-app-web/packages/services/src/Domain/Integrity/IntegrityApiInterface.ts
2023-02-28 20:43:25 -06:00

6 lines
245 B
TypeScript

import { CheckIntegrityResponse, IntegrityPayload, HttpResponse } from '@standardnotes/responses'
export interface IntegrityApiInterface {
checkIntegrity(integrityPayloads: IntegrityPayload[]): Promise<HttpResponse<CheckIntegrityResponse>>
}