UNPKG

433 BTypeScriptView Raw
1import { WebAPICallResult } from '../../WebClient';
2export type FilesCommentsEditResponse = WebAPICallResult & {
3 comment?: Comment;
4 error?: string;
5 needed?: string;
6 ok?: boolean;
7 provided?: string;
8};
9export interface Comment {
10 comment?: string;
11 created?: number;
12 id?: string;
13 is_intro?: boolean;
14 timestamp?: number;
15 user?: string;
16}
17//# sourceMappingURL=FilesCommentsEditResponse.d.ts.map
\No newline at end of file