agora-meeting-sdk
Version:
For publishing npm package agora-metting-sdk (Web). Get more information from https://docs.agora.io
16 lines (15 loc) • 494 B
TypeScript
import { FC, ReactNode } from 'react';
import { BaseProps } from '../../../../../../agora-meeting-ui/src/components/interface/base-props';
import './index.css';
import { SettingValue } from './declare';
import './index.css';
export interface ISettingTab {
text: string;
value: SettingValue;
component: ReactNode;
}
export interface SettingProps extends BaseProps {
exclude?: SettingValue[];
defaultHighlight?: SettingValue;
}
export declare const Setting: FC<SettingProps>;