agora-meeting-sdk
Version:
For publishing npm package agora-metting-sdk (Web). Get more information from https://docs.agora.io
12 lines (11 loc) • 341 B
TypeScript
import { FC, ReactNode } from 'react';
import { BaseProps } from '../interface/base-props';
import './index.css';
export interface AffixProps extends BaseProps {
top?: number | string;
left?: number | string;
content?: ReactNode;
collapse?: boolean;
onCollapse?: () => void;
}
export declare const Affix: FC<AffixProps>;