@gobistories/gobi-web-integration
Version:
Welcome to Gobi Web Integration. This library will let you put your Gobi stories on your site.
21 lines (18 loc) • 494 B
text/typescript
import {ModulePlayerOptions} from "@/Module/gobi-module.types";
export interface MobileLayoutStoryOption {
id: string
avatarSrc?: string,
title?: string,
description?: string,
color?: string,
titleColor?: string,
descriptionColor?: string,
}
export interface MobileLayoutOptions{
title?:string,
color?: string,
verticalOrientation?: boolean
stories: MobileLayoutStoryOption[],
playerOptions?: ModulePlayerOptions,
container?: HTMLElement
}