@paperbits/common
Version:
Paperbits common components.
24 lines (21 loc) • 489 B
text/typescript
export interface IBackground {
imageUrl?: string;
videoUrl?: string;
position?: string;
repeat?: string;
color?: string;
size?: string;
}
export interface BackgroundPicture {
sourceUrl: string;
repeat: boolean; // true, false
position: string; // center center
}
export interface BackgroundVideo {
sourceUrl: string;
autoplay: boolean;
}
export interface BackgroundMap {
address: string;
pinImageUrl: string;
}