7 lines
245 B
TypeScript
7 lines
245 B
TypeScript
|
import type BaseComponent from "./baseComponent";
|
||
|
|
||
|
export default interface DynamicZoneFullText extends BaseComponent {
|
||
|
__component: "dynamic-zone.full-text";
|
||
|
text: Array<{ type: string; children: Array<{ type: string; text: string }> }>;
|
||
|
}
|