UNPKG

agora-classroom-sdk

Version:

For publishing npm package agora-classroom-sdk (Web & Electron). Get more information from https://docs.agora.io

12 lines (11 loc) 337 B
import React from 'react'; import { BaseProps } from '../util/type'; export type { SvgaTypes } from './svga-types'; export interface SvgaPlayerProps extends BaseProps { width?: number; height?: number; url: string; onFinish?: () => void; loops?: boolean; } export declare const SvgaPlayer: React.FC<SvgaPlayerProps>;