agora-classroom-sdk
Version:
For publishing npm package agora-classroom-sdk (Web & Electron). Get more information from https://docs.agora.io
14 lines (13 loc) • 438 B
TypeScript
import { CSSProperties } from 'react';
import { SvgIconEnum } from '../svg-img';
export interface BaseProps {
style?: CSSProperties;
className?: string;
id?: string;
}
export declare const tuple: <T extends string[]>(...args: T) => T;
export declare type ElementOf<T> = T extends (infer E)[] ? E : T extends readonly (infer F)[] ? F : never;
export declare type IconWithState = {
icon: SvgIconEnum;
color?: string;
};