/
githubmirror
/
strapi
Обзор
Документация
Войти
/
githubmirror
/
strapi
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
packages/core/content-manager/shared/contracts/init.ts
22 строки
488 B
Alexandre Bodin
chore: migrate EditSettingsView to ts
15 янв 2024, 19:06
15 янв 2024, 19:06
a0d7ebc
Код
Авторство
О чём код?
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: { fieldSizes: Record<string, { default: number; isResizable: boolean }>; components: Component[]; contentTypes: ContentType[]; }; error?: errors.ApplicationError; } }