Jamie Howard 08920be519
Convert CM to TS (#18669)
Co-authored-by: Josh <37798644+joshuaellis@users.noreply.github.com>
2023-11-15 11:08:04 +00:00

25 lines
518 B
TypeScript

import { errors } from '@strapi/utils';
import { Component } from './components';
import { ContentType } from './content-types';
/**
* GET /init
*/
export declare namespace GetInitData {
export interface Request {
body: {};
query: {};
}
export interface Response {
data: {
data: {
fieldSizes: Record<string, { default: number; isResizeable: boolean }>;
components: Component[];
contentTypes: ContentType[];
};
};
error?: errors.ApplicationError;
}
}