mirror of
https://github.com/strapi/strapi.git
synced 2025-08-02 05:48:39 +00:00
10 lines
210 B
TypeScript
10 lines
210 B
TypeScript
![]() |
import { Schema } from '@strapi/types';
|
||
|
|
||
|
export interface ContentType extends Schema.ContentType {
|
||
|
isDisplayed: boolean;
|
||
|
}
|
||
|
|
||
|
export interface Component extends Schema.Component {
|
||
|
isDisplayed: boolean;
|
||
|
}
|