openvidu/openvidu-browser/lib/OpenViduInternal/Enums/VideoInsertMode.d.ts

26 lines
689 B
TypeScript
Raw Normal View History

2018-04-26 15:33:47 +02:00
/**
* How the video will be inserted in the DOM for Publishers and Subscribers. See [[PublisherProperties.insertMode]] and [[SubscriberProperties.insertMode]]
*/
export declare enum VideoInsertMode {
/**
* Video inserted after the target element (as next sibling)
*/
AFTER = "AFTER",
/**
* Video inserted as last child of the target element
*/
APPEND = "APPEND",
/**
* Video inserted before the target element (as previous sibling)
*/
BEFORE = "BEFORE",
/**
* Video inserted as first child of the target element
*/
PREPEND = "PREPEND",
/**
* Video replaces target element
*/
REPLACE = "REPLACE"
2018-04-26 15:33:47 +02:00
}