import type { PresenceResult, IPresenceParams } from './presence'; import type { IPresenceNotifyParams } from './notify'; export interface IApi { presenceCheckIn(params: IPresenceNotifyParams): Promise; presenceCheckOut(params: IPresenceNotifyParams): Promise; presenceNotify(params: IPresenceNotifyParams): Promise; presence(params?: IPresenceParams): Promise; }