16 lines
475 B
TypeScript
16 lines
475 B
TypeScript
|
|
import { GenericActionPayload } from "../../../actions/GenericAction";
|
||
|
|
import { GenericWidgetData } from "../Widget";
|
||
|
|
import {
|
||
|
|
ImageFieldData,
|
||
|
|
LottieFieldData,
|
||
|
|
TextFieldData,
|
||
|
|
} from "./TitleWidgetData";
|
||
|
|
|
||
|
|
export interface TitleSubtitleWithAssetWidgetData extends GenericWidgetData {
|
||
|
|
title?: TextFieldData;
|
||
|
|
subtitle?: TextFieldData;
|
||
|
|
image?: ImageFieldData;
|
||
|
|
action?: GenericActionPayload;
|
||
|
|
backgroundImage?: ImageFieldData;
|
||
|
|
backgroundLottie?: LottieFieldData;
|
||
|
|
}
|