import { ServiceResult } from "./types"; /** * @class XApi */ export interface XApi { add(): Promise; find(): Promise; findAll(): Promise; update(): Promise; remove(): Promise; }