mirror of
https://github.com/strapi/strapi.git
synced 2025-08-01 05:17:14 +00:00

* Update Yarn to v4.0.0 Signed-off-by: Sora Morimoto <sora@morimoto.io> * `yarn format` Signed-off-by: Sora Morimoto <sora@morimoto.io> --------- Signed-off-by: Sora Morimoto <sora@morimoto.io>
10 lines
206 B
TypeScript
10 lines
206 B
TypeScript
import { Schema } from '@strapi/types';
|
|
|
|
export interface ContentType extends Schema.ContentType {
|
|
isDisplayed: boolean;
|
|
}
|
|
|
|
export interface Component extends Schema.Component {
|
|
isDisplayed: boolean;
|
|
}
|