8 lines
197 B
TypeScript
8 lines
197 B
TypeScript
|
import type BaseComponent from "./baseComponent";
|
||
|
|
||
|
export default interface DynamicZoneEmbedding extends BaseComponent {
|
||
|
__component: "dynamic-zone.embedding";
|
||
|
title: string;
|
||
|
link: string;
|
||
|
}
|