bugyo-cloud-client
Version:
HTTP client for Bugyo Cloud
14 lines (13 loc) • 441 B
TypeScript
import { BugyoCloudClient } from "../bugyo-cloud-client";
import { PunchInfo } from "../models/punch-info";
import { BaseEndpoint } from "./base/base-endpoint";
/**
* 打刻します。
*/
export declare class TimeClock extends BaseEndpoint {
invoke(client: BugyoCloudClient, token: string, punchInfo: PunchInfo): Promise<void>;
private createConfig;
private createHeaders;
private getRefererUrl;
private createData;
}