/ src / components / YouTubeEmbed / template.ts
template.ts
 1  export const YouTubeEmbedBlockTemplate = {
 2    name: "youTubeEmbed",
 3    label: "YouTube Embed",
 4    fields: [
 5      {
 6        name: "title",
 7        label: "Title",
 8        type: "string",
 9      },
10      {
11        name: "url",
12        label: "YouTube URL",
13        type: "string",
14      },
15      {
16        name: "caption",
17        label: "Caption",
18        type: "string",
19      },
20    ],
21  };