mirror of
https://github.com/strapi/strapi.git
synced 2025-08-01 21:36:25 +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;
|
|
}
|