@timesheet/sdk
Version:
Official TypeScript SDK for the Timesheet API
10 lines • 447 B
TypeScript
import type { ApiClient } from '../../http';
import type { DocumentReport } from '../../models';
import { Resource } from '../Resource';
export declare class DocumentReportResource extends Resource {
constructor(client: ApiClient);
get(documentId: string): Promise<DocumentReport>;
getPdf(documentId: string): Promise<ArrayBuffer>;
getXml(documentId: string): Promise<string>;
}
//# sourceMappingURL=DocumentReportResource.d.ts.map