Interface EmbeddableProps

interface EmbeddableProps {
    app_name: string;
    embed_locations?: EmbedLocation[];
    file: null | ContentGridFileProps;
    headless_locations?: EmbedLocation[];
    height?: string;
    properties_by_embed_location?: Partial<
        Record<EmbedLocation, EmbeddedLocationProperties>,
    >;
    settings?: Record<string, unknown>;
    src: null | string;
    type: "app";
    width?: string;
}

Properties

app_name: string
embed_locations?: EmbedLocation[]
headless_locations?: EmbedLocation[]
height?: string
properties_by_embed_location?: Partial<
    Record<EmbedLocation, EmbeddedLocationProperties>,
>
settings?: Record<string, unknown>
src: null | string
type: "app"
width?: string