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