UNPKG

361 BTypeScriptView Raw
1import * as React from 'react';
2import { IStyleAnimProps } from 'rc-tween-one/typings/AnimObject';
3
4export interface IProps<T> extends React.HTMLAttributes<T> {
5 scrollParallax?: IStyleAnimProps;
6 videoResize?: boolean;
7 component?: string | React.ReactNode;
8 componentProps?: {};
9}
10
11export default class BgElement<T> extends React.Component<IProps<T>> {
12
13}
\No newline at end of file