UNPKG

trtc-electron-sdk

Version:

trtc electron sdk

8 lines (7 loc) 434 B
import { TRTCStreamLayoutMode } from '../types'; import { ITRTCStreamLayoutManager, INativeStreamLayoutManager, TRTCStreamLayoutContext } from './types'; export * from './types'; declare function create(layoutMode: TRTCStreamLayoutMode, nativeStreamLayoutManager: INativeStreamLayoutManager, context: TRTCStreamLayoutContext): ITRTCStreamLayoutManager; export declare const StreamLayoutFactory: { create: typeof create; };