trtc-electron-sdk
Version:
trtc electron sdk
12 lines (11 loc) • 566 B
TypeScript
import BaseStreamLayoutManager from "./BaseStreamLayoutManager";
import { TRTCStreamLayout } from "../types";
import { INativeStreamLayoutManager, TRTCStreamLayoutContext } from "./types";
declare class NoneStreamLayoutManager extends BaseStreamLayoutManager {
protected logPrefix: string;
constructor(nativeStreamLayoutManager: INativeStreamLayoutManager, context: TRTCStreamLayoutContext);
setLayout(layout: TRTCStreamLayout): void;
protected refreshLayout(): void;
private centerLiveOwner;
}
export default NoneStreamLayoutManager;