cryo-groupx-sdk
Version:
SDK for group-x.xyz Public API
6 lines (5 loc) • 338 B
TypeScript
import { IKnowTimer } from "./types";
declare const getMyGroupTimers: (recvObjectId?: string, recvIsGroup?: boolean) => Promise<any>;
declare const addMyGroupTimer: (timer: IKnowTimer) => Promise<any>;
declare const delMyGroupTimer: (timer: IKnowTimer) => Promise<any>;
export { getMyGroupTimers, addMyGroupTimer, delMyGroupTimer };