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