17 lines
472 B
TypeScript
17 lines
472 B
TypeScript
|
|
import { GenericActionPayload } from "../../../actions/GenericAction";
|
||
|
|
import { GenericWidgetData } from "../Widget";
|
||
|
|
import {
|
||
|
|
ImageFieldData,
|
||
|
|
LottieFieldData,
|
||
|
|
TextFieldData,
|
||
|
|
} from "./TitleWidgetData";
|
||
|
|
|
||
|
|
export interface HeaderWithAssetsWidgetData extends GenericWidgetData {
|
||
|
|
leftIcon?: ImageFieldData;
|
||
|
|
leftLottie?: LottieFieldData;
|
||
|
|
centerTitle?: TextFieldData;
|
||
|
|
rightIcon?: ImageFieldData;
|
||
|
|
rightLottie?: LottieFieldData;
|
||
|
|
action?: GenericActionPayload;
|
||
|
|
}
|