22 lines
506 B
TypeScript
22 lines
506 B
TypeScript
import { CtaData } from "../..";
|
|
import { GenericWidgetData } from "../Widget";
|
|
import {
|
|
ImageFieldData,
|
|
LottieFieldData,
|
|
TextFieldData,
|
|
} from "./TitleWidgetData";
|
|
|
|
export interface FabWidgetData extends GenericWidgetData {
|
|
lottieData?: LottieFieldData;
|
|
buttonTitle?: TextFieldData;
|
|
topLottieData?: LottieFieldData;
|
|
imageData?: ImageFieldData;
|
|
properties?: FabProperties;
|
|
callbackCta?: CtaData;
|
|
}
|
|
|
|
export interface FabProperties {
|
|
isDraggable?: boolean;
|
|
startingPosition?: number;
|
|
}
|