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