UNPKG

splitwise

Version:

A TypeScript SDK for the Splitwise API.

9 lines 557 B
import type { RequestOverrides } from '../http.js'; import type { Comment, CommentCreateParams, CommentDeleteParams, CommentListParams } from '../types.js'; import { BaseResource } from './base.js'; export declare class Comments extends BaseResource { list(params: CommentListParams, overrides?: RequestOverrides): Promise<Comment[]>; create(params: CommentCreateParams, overrides?: RequestOverrides): Promise<Comment>; delete(params: CommentDeleteParams, overrides?: RequestOverrides): Promise<Comment>; } //# sourceMappingURL=comments.d.ts.map