import { AxiosResponse } from "axios"; import { Wecom, WecomConfig } from "../../../wecom"; import { ICheckinDataRet, ICheckinOptionRet, QueryCheckinData, QueryCheckinOption } from "./interface"; export declare class Checkin extends Wecom { constructor(config: Partial); /** * @description 获取打卡数据 * @param {QueryCheckinData} data * @return {*} {Promise>} * @memberof Checkin */ getCheckinData(data: QueryCheckinData): Promise>; /** * @description 获取打卡规则 * @param {QueryCheckinOption} data * @return {*} {Promise>} * @memberof Checkin */ getCheckinOption(data: QueryCheckinOption): Promise>; }