Files
standardnotes-app-web/packages/snjs/lib/Services/User/UserServerInterface.ts
2022-07-06 14:04:30 +02:00

6 lines
198 B
TypeScript

import { HttpResponse, MinimalHttpResponse } from '@standardnotes/responses'
export interface UserServerInterface {
deleteAccount(userUuid: string): Promise<HttpResponse | MinimalHttpResponse>
}