1 | import type { WebAPICallResult } from '../../WebClient';
|
2 | export type CanvasesSectionsLookupResponse = WebAPICallResult & {
|
3 | error?: string;
|
4 | needed?: string;
|
5 | ok?: boolean;
|
6 | provided?: string;
|
7 | response_metadata?: ResponseMetadata;
|
8 | sections?: Section[];
|
9 | };
|
10 | export interface ResponseMetadata {
|
11 | messages?: string[];
|
12 | }
|
13 | export interface Section {
|
14 | id?: string;
|
15 | }
|
16 | //# sourceMappingURL=CanvasesSectionsLookupResponse.d.ts.map |
\ | No newline at end of file |