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