openvidu-node-client TypeDoc custom theme
After Width: | Height: | Size: 9.4 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 480 B |
After Width: | Height: | Size: 855 B |
|
@ -0,0 +1,822 @@
|
||||||
|
var __extends = (this && this.__extends) || (function () {
|
||||||
|
var extendStatics = Object.setPrototypeOf ||
|
||||||
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||||
|
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
||||||
|
return function (d, b) {
|
||||||
|
extendStatics(d, b);
|
||||||
|
function __() { this.constructor = d; }
|
||||||
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||||
|
};
|
||||||
|
})();
|
||||||
|
var typedoc;
|
||||||
|
(function (typedoc) {
|
||||||
|
typedoc.$html = $('html');
|
||||||
|
var services = [];
|
||||||
|
var components = [];
|
||||||
|
typedoc.$document = $(document);
|
||||||
|
typedoc.$window = $(window);
|
||||||
|
typedoc.$body = $('body');
|
||||||
|
function registerService(constructor, name, priority) {
|
||||||
|
if (priority === void 0) { priority = 0; }
|
||||||
|
services.push({
|
||||||
|
constructor: constructor,
|
||||||
|
name: name,
|
||||||
|
priority: priority,
|
||||||
|
instance: null
|
||||||
|
});
|
||||||
|
services.sort(function (a, b) { return a.priority - b.priority; });
|
||||||
|
}
|
||||||
|
typedoc.registerService = registerService;
|
||||||
|
function registerComponent(constructor, selector, priority, namespace) {
|
||||||
|
if (priority === void 0) { priority = 0; }
|
||||||
|
if (namespace === void 0) { namespace = '*'; }
|
||||||
|
components.push({
|
||||||
|
selector: selector,
|
||||||
|
constructor: constructor,
|
||||||
|
priority: priority,
|
||||||
|
namespace: namespace
|
||||||
|
});
|
||||||
|
components.sort(function (a, b) { return a.priority - b.priority; });
|
||||||
|
}
|
||||||
|
typedoc.registerComponent = registerComponent;
|
||||||
|
if (typeof Backbone != 'undefined') {
|
||||||
|
typedoc['Events'] = (function () {
|
||||||
|
var res = function () { };
|
||||||
|
_.extend(res.prototype, Backbone.Events);
|
||||||
|
return res;
|
||||||
|
})();
|
||||||
|
}
|
||||||
|
var Application = (function (_super) {
|
||||||
|
__extends(Application, _super);
|
||||||
|
function Application() {
|
||||||
|
var _this = _super.call(this) || this;
|
||||||
|
_this.createServices();
|
||||||
|
_this.createComponents(typedoc.$body);
|
||||||
|
return _this;
|
||||||
|
}
|
||||||
|
Application.prototype.createServices = function () {
|
||||||
|
_(services).forEach(function (c) {
|
||||||
|
c.instance = new c.constructor();
|
||||||
|
typedoc[c.name] = c.instance;
|
||||||
|
});
|
||||||
|
};
|
||||||
|
Application.prototype.createComponents = function ($context, namespace) {
|
||||||
|
if (namespace === void 0) { namespace = 'default'; }
|
||||||
|
var result = [];
|
||||||
|
_(components).forEach(function (c) {
|
||||||
|
if (c.namespace != namespace && c.namespace != '*') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
$context.find(c.selector).each(function (m, el) {
|
||||||
|
var $el = $(el), instance;
|
||||||
|
if (instance = $el.data('component')) {
|
||||||
|
if (_(result).indexOf(instance) == -1) {
|
||||||
|
result.push(instance);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
instance = new c.constructor({ el: el });
|
||||||
|
$el.data('component', instance);
|
||||||
|
result.push(instance);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
return result;
|
||||||
|
};
|
||||||
|
return Application;
|
||||||
|
}(typedoc.Events));
|
||||||
|
typedoc.Application = Application;
|
||||||
|
})(typedoc || (typedoc = {}));
|
||||||
|
var typedoc;
|
||||||
|
(function (typedoc) {
|
||||||
|
var FilterItem = (function () {
|
||||||
|
function FilterItem(key, value) {
|
||||||
|
this.key = key;
|
||||||
|
this.value = value;
|
||||||
|
this.defaultValue = value;
|
||||||
|
this.initialize();
|
||||||
|
if (window.localStorage[this.key]) {
|
||||||
|
this.setValue(this.fromLocalStorage(window.localStorage[this.key]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
FilterItem.prototype.initialize = function () { };
|
||||||
|
FilterItem.prototype.handleValueChange = function (oldValue, newValue) { };
|
||||||
|
FilterItem.prototype.fromLocalStorage = function (value) {
|
||||||
|
return value;
|
||||||
|
};
|
||||||
|
FilterItem.prototype.toLocalStorage = function (value) {
|
||||||
|
return value;
|
||||||
|
};
|
||||||
|
FilterItem.prototype.setValue = function (value) {
|
||||||
|
if (this.value == value)
|
||||||
|
return;
|
||||||
|
var oldValue = this.value;
|
||||||
|
this.value = value;
|
||||||
|
window.localStorage[this.key] = this.toLocalStorage(value);
|
||||||
|
this.handleValueChange(oldValue, value);
|
||||||
|
};
|
||||||
|
return FilterItem;
|
||||||
|
}());
|
||||||
|
var FilterItemCheckbox = (function (_super) {
|
||||||
|
__extends(FilterItemCheckbox, _super);
|
||||||
|
function FilterItemCheckbox() {
|
||||||
|
return _super !== null && _super.apply(this, arguments) || this;
|
||||||
|
}
|
||||||
|
FilterItemCheckbox.prototype.initialize = function () {
|
||||||
|
var _this = this;
|
||||||
|
this.$checkbox = $('#tsd-filter-' + this.key);
|
||||||
|
this.$checkbox.on('change', function () {
|
||||||
|
_this.setValue(_this.$checkbox.prop('checked'));
|
||||||
|
});
|
||||||
|
};
|
||||||
|
FilterItemCheckbox.prototype.handleValueChange = function (oldValue, newValue) {
|
||||||
|
this.$checkbox.prop('checked', this.value);
|
||||||
|
typedoc.$html.toggleClass('toggle-' + this.key, this.value != this.defaultValue);
|
||||||
|
};
|
||||||
|
FilterItemCheckbox.prototype.fromLocalStorage = function (value) {
|
||||||
|
return value == 'true';
|
||||||
|
};
|
||||||
|
FilterItemCheckbox.prototype.toLocalStorage = function (value) {
|
||||||
|
return value ? 'true' : 'false';
|
||||||
|
};
|
||||||
|
return FilterItemCheckbox;
|
||||||
|
}(FilterItem));
|
||||||
|
var FilterItemSelect = (function (_super) {
|
||||||
|
__extends(FilterItemSelect, _super);
|
||||||
|
function FilterItemSelect() {
|
||||||
|
return _super !== null && _super.apply(this, arguments) || this;
|
||||||
|
}
|
||||||
|
FilterItemSelect.prototype.initialize = function () {
|
||||||
|
var _this = this;
|
||||||
|
typedoc.$html.addClass('toggle-' + this.key + this.value);
|
||||||
|
this.$select = $('#tsd-filter-' + this.key);
|
||||||
|
this.$select.on(typedoc.pointerDown + ' mouseover', function () {
|
||||||
|
_this.$select.addClass('active');
|
||||||
|
}).on('mouseleave', function () {
|
||||||
|
_this.$select.removeClass('active');
|
||||||
|
}).on(typedoc.pointerUp, 'li', function (e) {
|
||||||
|
_this.$select.removeClass('active');
|
||||||
|
_this.setValue($(e.target).attr('data-value'));
|
||||||
|
});
|
||||||
|
typedoc.$document.on(typedoc.pointerDown, function (e) {
|
||||||
|
var $path = $(e.target).parents().addBack();
|
||||||
|
if ($path.is(_this.$select))
|
||||||
|
return;
|
||||||
|
_this.$select.removeClass('active');
|
||||||
|
});
|
||||||
|
};
|
||||||
|
FilterItemSelect.prototype.handleValueChange = function (oldValue, newValue) {
|
||||||
|
this.$select.find('li.selected').removeClass('selected');
|
||||||
|
this.$select.find('.tsd-select-label').text(this.$select.find('li[data-value="' + newValue + '"]').addClass('selected').text());
|
||||||
|
typedoc.$html.removeClass('toggle-' + oldValue);
|
||||||
|
typedoc.$html.addClass('toggle-' + newValue);
|
||||||
|
};
|
||||||
|
return FilterItemSelect;
|
||||||
|
}(FilterItem));
|
||||||
|
var Filter = (function (_super) {
|
||||||
|
__extends(Filter, _super);
|
||||||
|
function Filter(options) {
|
||||||
|
var _this = _super.call(this, options) || this;
|
||||||
|
_this.optionVisibility = new FilterItemSelect('visibility', 'private');
|
||||||
|
_this.optionInherited = new FilterItemCheckbox('inherited', true);
|
||||||
|
_this.optionExternals = new FilterItemCheckbox('externals', true);
|
||||||
|
_this.optionOnlyExported = new FilterItemCheckbox('only-exported', false);
|
||||||
|
return _this;
|
||||||
|
}
|
||||||
|
Filter.isSupported = function () {
|
||||||
|
try {
|
||||||
|
return typeof window.localStorage != 'undefined';
|
||||||
|
}
|
||||||
|
catch (e) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return Filter;
|
||||||
|
}(Backbone.View));
|
||||||
|
if (Filter.isSupported()) {
|
||||||
|
typedoc.registerComponent(Filter, '#tsd-filter');
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
typedoc.$html.addClass('no-filter');
|
||||||
|
}
|
||||||
|
})(typedoc || (typedoc = {}));
|
||||||
|
var typedoc;
|
||||||
|
(function (typedoc) {
|
||||||
|
var MenuHighlight = (function (_super) {
|
||||||
|
__extends(MenuHighlight, _super);
|
||||||
|
function MenuHighlight(options) {
|
||||||
|
var _this = _super.call(this, options) || this;
|
||||||
|
_this.index = 0;
|
||||||
|
_this.listenTo(typedoc.viewport, 'resize', _this.onResize);
|
||||||
|
_this.listenTo(typedoc.viewport, 'scroll', _this.onScroll);
|
||||||
|
_this.createAnchors();
|
||||||
|
return _this;
|
||||||
|
}
|
||||||
|
MenuHighlight.prototype.createAnchors = function () {
|
||||||
|
var _this = this;
|
||||||
|
this.index = 0;
|
||||||
|
this.anchors = [{
|
||||||
|
position: 0
|
||||||
|
}];
|
||||||
|
var base = window.location.href;
|
||||||
|
if (base.indexOf('#') != -1) {
|
||||||
|
base = base.substr(0, base.indexOf('#'));
|
||||||
|
}
|
||||||
|
this.$el.find('a').each(function (index, el) {
|
||||||
|
var href = el.href;
|
||||||
|
if (href.indexOf('#') == -1)
|
||||||
|
return;
|
||||||
|
if (href.substr(0, base.length) != base)
|
||||||
|
return;
|
||||||
|
var hash = href.substr(href.indexOf('#') + 1);
|
||||||
|
var $anchor = $('a.tsd-anchor[name=' + hash + ']');
|
||||||
|
if ($anchor.length == 0)
|
||||||
|
return;
|
||||||
|
_this.anchors.push({
|
||||||
|
$link: $(el.parentNode),
|
||||||
|
$anchor: $anchor,
|
||||||
|
position: 0
|
||||||
|
});
|
||||||
|
});
|
||||||
|
this.onResize();
|
||||||
|
};
|
||||||
|
MenuHighlight.prototype.onResize = function () {
|
||||||
|
var anchor;
|
||||||
|
for (var index = 1, count = this.anchors.length; index < count; index++) {
|
||||||
|
anchor = this.anchors[index];
|
||||||
|
anchor.position = anchor.$anchor.offset().top;
|
||||||
|
}
|
||||||
|
this.anchors.sort(function (a, b) {
|
||||||
|
return a.position - b.position;
|
||||||
|
});
|
||||||
|
this.onScroll(typedoc.viewport.scrollTop);
|
||||||
|
};
|
||||||
|
MenuHighlight.prototype.onScroll = function (scrollTop) {
|
||||||
|
var anchors = this.anchors;
|
||||||
|
var index = this.index;
|
||||||
|
var count = anchors.length - 1;
|
||||||
|
scrollTop += 5;
|
||||||
|
while (index > 0 && anchors[index].position > scrollTop) {
|
||||||
|
index -= 1;
|
||||||
|
}
|
||||||
|
while (index < count && anchors[index + 1].position < scrollTop) {
|
||||||
|
index += 1;
|
||||||
|
}
|
||||||
|
if (this.index != index) {
|
||||||
|
if (this.index > 0)
|
||||||
|
this.anchors[this.index].$link.removeClass('focus');
|
||||||
|
this.index = index;
|
||||||
|
if (this.index > 0)
|
||||||
|
this.anchors[this.index].$link.addClass('focus');
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return MenuHighlight;
|
||||||
|
}(Backbone.View));
|
||||||
|
typedoc.MenuHighlight = MenuHighlight;
|
||||||
|
typedoc.registerComponent(MenuHighlight, '.menu-highlight');
|
||||||
|
})(typedoc || (typedoc = {}));
|
||||||
|
var typedoc;
|
||||||
|
(function (typedoc) {
|
||||||
|
var hasPositionSticky = typedoc.$html.hasClass('csspositionsticky');
|
||||||
|
var StickyMode;
|
||||||
|
(function (StickyMode) {
|
||||||
|
StickyMode[StickyMode["None"] = 0] = "None";
|
||||||
|
StickyMode[StickyMode["Secondary"] = 1] = "Secondary";
|
||||||
|
StickyMode[StickyMode["Current"] = 2] = "Current";
|
||||||
|
})(StickyMode || (StickyMode = {}));
|
||||||
|
var MenuSticky = (function (_super) {
|
||||||
|
__extends(MenuSticky, _super);
|
||||||
|
function MenuSticky(options) {
|
||||||
|
var _this = _super.call(this, options) || this;
|
||||||
|
_this.state = '';
|
||||||
|
_this.stickyMode = StickyMode.None;
|
||||||
|
_this.$current = _this.$el.find('> ul.current');
|
||||||
|
_this.$navigation = _this.$el.parents('.menu-sticky-wrap');
|
||||||
|
_this.$container = _this.$el.parents('.row');
|
||||||
|
_this.listenTo(typedoc.viewport, 'resize', _this.onResize);
|
||||||
|
if (!hasPositionSticky) {
|
||||||
|
_this.listenTo(typedoc.viewport, 'scroll', _this.onScroll);
|
||||||
|
}
|
||||||
|
_this.onResize(typedoc.viewport.width, typedoc.viewport.height);
|
||||||
|
return _this;
|
||||||
|
}
|
||||||
|
MenuSticky.prototype.setState = function (state) {
|
||||||
|
if (this.state == state)
|
||||||
|
return;
|
||||||
|
if (this.state != '')
|
||||||
|
this.$navigation.removeClass(this.state);
|
||||||
|
this.state = state;
|
||||||
|
if (this.state != '')
|
||||||
|
this.$navigation.addClass(this.state);
|
||||||
|
};
|
||||||
|
MenuSticky.prototype.onResize = function (width, height) {
|
||||||
|
this.stickyMode = StickyMode.None;
|
||||||
|
this.setState('');
|
||||||
|
var containerTop = this.$container.offset().top;
|
||||||
|
var containerHeight = this.$container.height();
|
||||||
|
var bottom = containerTop + containerHeight;
|
||||||
|
if (this.$navigation.height() < containerHeight) {
|
||||||
|
var elHeight = this.$el.height();
|
||||||
|
var elTop = this.$el.offset().top;
|
||||||
|
if (this.$current.length) {
|
||||||
|
var currentHeight = this.$current.height();
|
||||||
|
var currentTop = this.$current.offset().top;
|
||||||
|
this.$navigation.css('top', containerTop - currentTop + 20);
|
||||||
|
if (currentHeight < height) {
|
||||||
|
this.stickyMode = StickyMode.Current;
|
||||||
|
this.stickyTop = currentTop;
|
||||||
|
this.stickyBottom = bottom - elHeight + (currentTop - elTop) - 20;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (elHeight < height) {
|
||||||
|
this.$navigation.css('top', containerTop - elTop + 20);
|
||||||
|
this.stickyMode = StickyMode.Secondary;
|
||||||
|
this.stickyTop = elTop;
|
||||||
|
this.stickyBottom = bottom - elHeight - 20;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!hasPositionSticky) {
|
||||||
|
this.$navigation.css('left', this.$navigation.offset().left);
|
||||||
|
this.onScroll(typedoc.viewport.scrollTop);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
if (this.stickyMode == StickyMode.Current) {
|
||||||
|
this.setState('sticky-current');
|
||||||
|
}
|
||||||
|
else if (this.stickyMode == StickyMode.Secondary) {
|
||||||
|
this.setState('sticky');
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
this.setState('');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
MenuSticky.prototype.onScroll = function (scrollTop) {
|
||||||
|
if (this.stickyMode == StickyMode.Current) {
|
||||||
|
if (scrollTop > this.stickyBottom) {
|
||||||
|
this.setState('sticky-bottom');
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
this.setState(scrollTop + 20 > this.stickyTop ? 'sticky-current' : '');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (this.stickyMode == StickyMode.Secondary) {
|
||||||
|
if (scrollTop > this.stickyBottom) {
|
||||||
|
this.setState('sticky-bottom');
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
this.setState(scrollTop + 20 > this.stickyTop ? 'sticky' : '');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return MenuSticky;
|
||||||
|
}(Backbone.View));
|
||||||
|
typedoc.MenuSticky = MenuSticky;
|
||||||
|
typedoc.registerComponent(MenuSticky, '.menu-sticky');
|
||||||
|
})(typedoc || (typedoc = {}));
|
||||||
|
var typedoc;
|
||||||
|
(function (typedoc) {
|
||||||
|
var search;
|
||||||
|
(function (search) {
|
||||||
|
var SearchLoadingState;
|
||||||
|
(function (SearchLoadingState) {
|
||||||
|
SearchLoadingState[SearchLoadingState["Idle"] = 0] = "Idle";
|
||||||
|
SearchLoadingState[SearchLoadingState["Loading"] = 1] = "Loading";
|
||||||
|
SearchLoadingState[SearchLoadingState["Ready"] = 2] = "Ready";
|
||||||
|
SearchLoadingState[SearchLoadingState["Failure"] = 3] = "Failure";
|
||||||
|
})(SearchLoadingState || (SearchLoadingState = {}));
|
||||||
|
var $el = $('#tsd-search');
|
||||||
|
var $field = $('#tsd-search-field');
|
||||||
|
var $results = $('.results');
|
||||||
|
var base = $el.attr('data-base') + '/';
|
||||||
|
var query = '';
|
||||||
|
var loadingState = SearchLoadingState.Idle;
|
||||||
|
var hasFocus = false;
|
||||||
|
var preventPress = false;
|
||||||
|
var index;
|
||||||
|
function createIndex() {
|
||||||
|
index = new lunr.Index();
|
||||||
|
index.pipeline.add(lunr.trimmer);
|
||||||
|
index.field('name', { boost: 10 });
|
||||||
|
index.field('parent');
|
||||||
|
index.ref('id');
|
||||||
|
var rows = search.data.rows;
|
||||||
|
var pos = 0;
|
||||||
|
var length = rows.length;
|
||||||
|
function batch() {
|
||||||
|
var cycles = 0;
|
||||||
|
while (cycles++ < 100) {
|
||||||
|
index.add(rows[pos]);
|
||||||
|
if (++pos == length) {
|
||||||
|
return setLoadingState(SearchLoadingState.Ready);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
setTimeout(batch, 10);
|
||||||
|
}
|
||||||
|
batch();
|
||||||
|
}
|
||||||
|
function loadIndex() {
|
||||||
|
if (loadingState != SearchLoadingState.Idle)
|
||||||
|
return;
|
||||||
|
setTimeout(function () {
|
||||||
|
if (loadingState == SearchLoadingState.Idle) {
|
||||||
|
setLoadingState(SearchLoadingState.Loading);
|
||||||
|
}
|
||||||
|
}, 500);
|
||||||
|
if (typeof search.data != 'undefined') {
|
||||||
|
createIndex();
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$.get($el.attr('data-index'))
|
||||||
|
.done(function (source) {
|
||||||
|
eval(source);
|
||||||
|
createIndex();
|
||||||
|
}).fail(function () {
|
||||||
|
setLoadingState(SearchLoadingState.Failure);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function updateResults() {
|
||||||
|
if (loadingState != SearchLoadingState.Ready)
|
||||||
|
return;
|
||||||
|
$results.empty();
|
||||||
|
var res = index.search(query);
|
||||||
|
for (var i = 0, c = Math.min(10, res.length); i < c; i++) {
|
||||||
|
var row = search.data.rows[res[i].ref];
|
||||||
|
var name = row.name;
|
||||||
|
if (row.parent)
|
||||||
|
name = '<span class="parent">' + row.parent + '.</span>' + name;
|
||||||
|
$results.append('<li class="' + row.classes + '"><a href="' + base + row.url + '" class="tsd-kind-icon">' + name + '</li>');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function setLoadingState(value) {
|
||||||
|
if (loadingState == value)
|
||||||
|
return;
|
||||||
|
$el.removeClass(SearchLoadingState[loadingState].toLowerCase());
|
||||||
|
loadingState = value;
|
||||||
|
$el.addClass(SearchLoadingState[loadingState].toLowerCase());
|
||||||
|
if (value == SearchLoadingState.Ready) {
|
||||||
|
updateResults();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function setHasFocus(value) {
|
||||||
|
if (hasFocus == value)
|
||||||
|
return;
|
||||||
|
hasFocus = value;
|
||||||
|
$el.toggleClass('has-focus');
|
||||||
|
if (!value) {
|
||||||
|
$field.val(query);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
setQuery('');
|
||||||
|
$field.val('');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function setQuery(value) {
|
||||||
|
query = $.trim(value);
|
||||||
|
updateResults();
|
||||||
|
}
|
||||||
|
function setCurrentResult(dir) {
|
||||||
|
var $current = $results.find('.current');
|
||||||
|
if ($current.length == 0) {
|
||||||
|
$results.find(dir == 1 ? 'li:first-child' : 'li:last-child').addClass('current');
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
var $rel = dir == 1 ? $current.next('li') : $current.prev('li');
|
||||||
|
if ($rel.length > 0) {
|
||||||
|
$current.removeClass('current');
|
||||||
|
$rel.addClass('current');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function gotoCurrentResult() {
|
||||||
|
var $current = $results.find('.current');
|
||||||
|
if ($current.length == 0) {
|
||||||
|
$current = $results.find('li:first-child');
|
||||||
|
}
|
||||||
|
if ($current.length > 0) {
|
||||||
|
window.location.href = $current.find('a').prop('href');
|
||||||
|
$field.blur();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$field.on('focusin', function () {
|
||||||
|
setHasFocus(true);
|
||||||
|
loadIndex();
|
||||||
|
}).on('focusout', function () {
|
||||||
|
setTimeout(function () { return setHasFocus(false); }, 100);
|
||||||
|
}).on('input', function () {
|
||||||
|
setQuery($.trim($field.val()));
|
||||||
|
}).on('keydown', function (e) {
|
||||||
|
if (e.keyCode == 13 || e.keyCode == 27 || e.keyCode == 38 || e.keyCode == 40) {
|
||||||
|
preventPress = true;
|
||||||
|
e.preventDefault();
|
||||||
|
if (e.keyCode == 13) {
|
||||||
|
gotoCurrentResult();
|
||||||
|
}
|
||||||
|
else if (e.keyCode == 27) {
|
||||||
|
$field.blur();
|
||||||
|
}
|
||||||
|
else if (e.keyCode == 38) {
|
||||||
|
setCurrentResult(-1);
|
||||||
|
}
|
||||||
|
else if (e.keyCode == 40) {
|
||||||
|
setCurrentResult(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
preventPress = false;
|
||||||
|
}
|
||||||
|
}).on('keypress', function (e) {
|
||||||
|
if (preventPress)
|
||||||
|
e.preventDefault();
|
||||||
|
});
|
||||||
|
$('body').on('keydown', function (e) {
|
||||||
|
if (e.altKey || e.ctrlKey || e.metaKey)
|
||||||
|
return;
|
||||||
|
if (!hasFocus && e.keyCode > 47 && e.keyCode < 112) {
|
||||||
|
$field.focus();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
})(search = typedoc.search || (typedoc.search = {}));
|
||||||
|
})(typedoc || (typedoc = {}));
|
||||||
|
var typedoc;
|
||||||
|
(function (typedoc) {
|
||||||
|
var SignatureGroup = (function () {
|
||||||
|
function SignatureGroup($signature, $description) {
|
||||||
|
this.$signature = $signature;
|
||||||
|
this.$description = $description;
|
||||||
|
}
|
||||||
|
SignatureGroup.prototype.addClass = function (className) {
|
||||||
|
this.$signature.addClass(className);
|
||||||
|
this.$description.addClass(className);
|
||||||
|
return this;
|
||||||
|
};
|
||||||
|
SignatureGroup.prototype.removeClass = function (className) {
|
||||||
|
this.$signature.removeClass(className);
|
||||||
|
this.$description.removeClass(className);
|
||||||
|
return this;
|
||||||
|
};
|
||||||
|
return SignatureGroup;
|
||||||
|
}());
|
||||||
|
var Signature = (function (_super) {
|
||||||
|
__extends(Signature, _super);
|
||||||
|
function Signature(options) {
|
||||||
|
var _this = _super.call(this, options) || this;
|
||||||
|
_this.index = -1;
|
||||||
|
_this.createGroups();
|
||||||
|
if (_this.groups) {
|
||||||
|
_this.$el.addClass('active')
|
||||||
|
.on('touchstart', '.tsd-signature', function (event) { return _this.onClick(event); })
|
||||||
|
.on('click', '.tsd-signature', function (event) { return _this.onClick(event); });
|
||||||
|
_this.$container.addClass('active');
|
||||||
|
_this.setIndex(0);
|
||||||
|
}
|
||||||
|
return _this;
|
||||||
|
}
|
||||||
|
Signature.prototype.setIndex = function (index) {
|
||||||
|
if (index < 0)
|
||||||
|
index = 0;
|
||||||
|
if (index > this.groups.length - 1)
|
||||||
|
index = this.groups.length - 1;
|
||||||
|
if (this.index == index)
|
||||||
|
return;
|
||||||
|
var to = this.groups[index];
|
||||||
|
if (this.index > -1) {
|
||||||
|
var from = this.groups[this.index];
|
||||||
|
typedoc.animateHeight(this.$container, function () {
|
||||||
|
from.removeClass('current').addClass('fade-out');
|
||||||
|
to.addClass('current fade-in');
|
||||||
|
typedoc.viewport.triggerResize();
|
||||||
|
});
|
||||||
|
setTimeout(function () {
|
||||||
|
from.removeClass('fade-out');
|
||||||
|
to.removeClass('fade-in');
|
||||||
|
}, 300);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
to.addClass('current');
|
||||||
|
typedoc.viewport.triggerResize();
|
||||||
|
}
|
||||||
|
this.index = index;
|
||||||
|
};
|
||||||
|
Signature.prototype.createGroups = function () {
|
||||||
|
var _this = this;
|
||||||
|
var $signatures = this.$el.find('> .tsd-signature');
|
||||||
|
if ($signatures.length < 2)
|
||||||
|
return;
|
||||||
|
this.$container = this.$el.siblings('.tsd-descriptions');
|
||||||
|
var $descriptions = this.$container.find('> .tsd-description');
|
||||||
|
this.groups = [];
|
||||||
|
$signatures.each(function (index, el) {
|
||||||
|
_this.groups.push(new SignatureGroup($(el), $descriptions.eq(index)));
|
||||||
|
});
|
||||||
|
};
|
||||||
|
Signature.prototype.onClick = function (e) {
|
||||||
|
var _this = this;
|
||||||
|
e.preventDefault();
|
||||||
|
_(this.groups).forEach(function (group, index) {
|
||||||
|
if (group.$signature.is(e.currentTarget)) {
|
||||||
|
_this.setIndex(index);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
return Signature;
|
||||||
|
}(Backbone.View));
|
||||||
|
typedoc.registerComponent(Signature, '.tsd-signatures');
|
||||||
|
})(typedoc || (typedoc = {}));
|
||||||
|
var typedoc;
|
||||||
|
(function (typedoc) {
|
||||||
|
var Toggle = (function (_super) {
|
||||||
|
__extends(Toggle, _super);
|
||||||
|
function Toggle(options) {
|
||||||
|
var _this = _super.call(this, options) || this;
|
||||||
|
_this.className = _this.$el.attr('data-toggle');
|
||||||
|
_this.$el.on(typedoc.pointerUp, function (e) { return _this.onPointerUp(e); });
|
||||||
|
_this.$el.on('click', function (e) { return e.preventDefault(); });
|
||||||
|
typedoc.$document.on(typedoc.pointerDown, function (e) { return _this.onDocumentPointerDown(e); });
|
||||||
|
typedoc.$document.on(typedoc.pointerUp, function (e) { return _this.onDocumentPointerUp(e); });
|
||||||
|
return _this;
|
||||||
|
}
|
||||||
|
Toggle.prototype.setActive = function (value) {
|
||||||
|
if (this.active == value)
|
||||||
|
return;
|
||||||
|
this.active = value;
|
||||||
|
typedoc.$html.toggleClass('has-' + this.className, value);
|
||||||
|
this.$el.toggleClass('active', value);
|
||||||
|
var transition = (this.active ? 'to-has-' : 'from-has-') + this.className;
|
||||||
|
typedoc.$html.addClass(transition);
|
||||||
|
setTimeout(function () { return typedoc.$html.removeClass(transition); }, 500);
|
||||||
|
};
|
||||||
|
Toggle.prototype.onPointerUp = function (event) {
|
||||||
|
if (typedoc.hasPointerMoved)
|
||||||
|
return;
|
||||||
|
this.setActive(true);
|
||||||
|
event.preventDefault();
|
||||||
|
};
|
||||||
|
Toggle.prototype.onDocumentPointerDown = function (e) {
|
||||||
|
if (this.active) {
|
||||||
|
var $path = $(e.target).parents().addBack();
|
||||||
|
if ($path.hasClass('col-menu')) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if ($path.hasClass('tsd-filter-group')) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.setActive(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
Toggle.prototype.onDocumentPointerUp = function (e) {
|
||||||
|
var _this = this;
|
||||||
|
if (typedoc.hasPointerMoved)
|
||||||
|
return;
|
||||||
|
if (this.active) {
|
||||||
|
var $path = $(e.target).parents().addBack();
|
||||||
|
if ($path.hasClass('col-menu')) {
|
||||||
|
var $link = $path.filter('a');
|
||||||
|
if ($link.length) {
|
||||||
|
var href = window.location.href;
|
||||||
|
if (href.indexOf('#') != -1) {
|
||||||
|
href = href.substr(0, href.indexOf('#'));
|
||||||
|
}
|
||||||
|
if ($link.prop('href').substr(0, href.length) == href) {
|
||||||
|
setTimeout(function () { return _this.setActive(false); }, 250);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return Toggle;
|
||||||
|
}(Backbone.View));
|
||||||
|
typedoc.registerComponent(Toggle, 'a[data-toggle]');
|
||||||
|
})(typedoc || (typedoc = {}));
|
||||||
|
var typedoc;
|
||||||
|
(function (typedoc) {
|
||||||
|
var Viewport = (function (_super) {
|
||||||
|
__extends(Viewport, _super);
|
||||||
|
function Viewport() {
|
||||||
|
var _this = _super.call(this) || this;
|
||||||
|
_this.scrollTop = 0;
|
||||||
|
_this.width = 0;
|
||||||
|
_this.height = 0;
|
||||||
|
typedoc.$window.on('scroll', _(function () { return _this.onScroll(); }).throttle(10));
|
||||||
|
typedoc.$window.on('resize', _(function () { return _this.onResize(); }).throttle(10));
|
||||||
|
_this.onResize();
|
||||||
|
_this.onScroll();
|
||||||
|
return _this;
|
||||||
|
}
|
||||||
|
Viewport.prototype.triggerResize = function () {
|
||||||
|
this.trigger('resize', this.width, this.height);
|
||||||
|
};
|
||||||
|
Viewport.prototype.onResize = function () {
|
||||||
|
this.width = typedoc.$window.width();
|
||||||
|
this.height = typedoc.$window.height();
|
||||||
|
this.trigger('resize', this.width, this.height);
|
||||||
|
};
|
||||||
|
Viewport.prototype.onScroll = function () {
|
||||||
|
this.scrollTop = typedoc.$window.scrollTop();
|
||||||
|
this.trigger('scroll', this.scrollTop);
|
||||||
|
};
|
||||||
|
return Viewport;
|
||||||
|
}(typedoc.Events));
|
||||||
|
typedoc.Viewport = Viewport;
|
||||||
|
typedoc.registerService(Viewport, 'viewport');
|
||||||
|
})(typedoc || (typedoc = {}));
|
||||||
|
var typedoc;
|
||||||
|
(function (typedoc) {
|
||||||
|
typedoc.pointerDown = 'mousedown';
|
||||||
|
typedoc.pointerMove = 'mousemove';
|
||||||
|
typedoc.pointerUp = 'mouseup';
|
||||||
|
typedoc.pointerDownPosition = { x: 0, y: 0 };
|
||||||
|
typedoc.preventNextClick = false;
|
||||||
|
typedoc.isPointerDown = false;
|
||||||
|
typedoc.isPointerTouch = false;
|
||||||
|
typedoc.hasPointerMoved = false;
|
||||||
|
typedoc.isMobile = /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);
|
||||||
|
typedoc.$html.addClass(typedoc.isMobile ? 'is-mobile' : 'not-mobile');
|
||||||
|
if (typedoc.isMobile && 'ontouchstart' in document.documentElement) {
|
||||||
|
typedoc.isPointerTouch = true;
|
||||||
|
typedoc.pointerDown = 'touchstart';
|
||||||
|
typedoc.pointerMove = 'touchmove';
|
||||||
|
typedoc.pointerUp = 'touchend';
|
||||||
|
}
|
||||||
|
typedoc.$document.on(typedoc.pointerDown, function (e) {
|
||||||
|
typedoc.isPointerDown = true;
|
||||||
|
typedoc.hasPointerMoved = false;
|
||||||
|
var t = (typedoc.pointerDown == 'touchstart' ? e.originalEvent['targetTouches'][0] : e);
|
||||||
|
typedoc.pointerDownPosition.x = t.pageX;
|
||||||
|
typedoc.pointerDownPosition.y = t.pageY;
|
||||||
|
}).on(typedoc.pointerMove, function (e) {
|
||||||
|
if (!typedoc.isPointerDown)
|
||||||
|
return;
|
||||||
|
if (!typedoc.hasPointerMoved) {
|
||||||
|
var t = (typedoc.pointerDown == 'touchstart' ? e.originalEvent['targetTouches'][0] : e);
|
||||||
|
var x = typedoc.pointerDownPosition.x - t.pageX;
|
||||||
|
var y = typedoc.pointerDownPosition.y - t.pageY;
|
||||||
|
typedoc.hasPointerMoved = (Math.sqrt(x * x + y * y) > 10);
|
||||||
|
}
|
||||||
|
}).on(typedoc.pointerUp, function (e) {
|
||||||
|
typedoc.isPointerDown = false;
|
||||||
|
}).on('click', function (e) {
|
||||||
|
if (typedoc.preventNextClick) {
|
||||||
|
e.preventDefault();
|
||||||
|
e.stopImmediatePropagation();
|
||||||
|
typedoc.preventNextClick = false;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
})(typedoc || (typedoc = {}));
|
||||||
|
var typedoc;
|
||||||
|
(function (typedoc) {
|
||||||
|
function getVendorInfo(tuples) {
|
||||||
|
for (var name in tuples) {
|
||||||
|
if (!tuples.hasOwnProperty(name))
|
||||||
|
continue;
|
||||||
|
if (typeof (document.body.style[name]) !== 'undefined') {
|
||||||
|
return { name: name, endEvent: tuples[name] };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
typedoc.transition = getVendorInfo({
|
||||||
|
'transition': 'transitionend',
|
||||||
|
'OTransition': 'oTransitionEnd',
|
||||||
|
'msTransition': 'msTransitionEnd',
|
||||||
|
'MozTransition': 'transitionend',
|
||||||
|
'WebkitTransition': 'webkitTransitionEnd'
|
||||||
|
});
|
||||||
|
function noTransition($el, callback) {
|
||||||
|
$el.addClass('no-transition');
|
||||||
|
callback();
|
||||||
|
$el.offset();
|
||||||
|
$el.removeClass('no-transition');
|
||||||
|
}
|
||||||
|
typedoc.noTransition = noTransition;
|
||||||
|
function animateHeight($el, callback, success) {
|
||||||
|
var from = $el.height(), to;
|
||||||
|
noTransition($el, function () {
|
||||||
|
callback();
|
||||||
|
$el.css('height', '');
|
||||||
|
to = $el.height();
|
||||||
|
if (from != to && typedoc.transition)
|
||||||
|
$el.css('height', from);
|
||||||
|
});
|
||||||
|
if (from != to && typedoc.transition) {
|
||||||
|
$el.css('height', to);
|
||||||
|
$el.on(typedoc.transition.endEvent, function () {
|
||||||
|
noTransition($el, function () {
|
||||||
|
$el.off(typedoc.transition.endEvent).css('height', '');
|
||||||
|
if (success)
|
||||||
|
success();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
if (success)
|
||||||
|
success();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
typedoc.animateHeight = animateHeight;
|
||||||
|
})(typedoc || (typedoc = {}));
|
||||||
|
var typedoc;
|
||||||
|
(function (typedoc) {
|
||||||
|
typedoc.app = new typedoc.Application();
|
||||||
|
})(typedoc || (typedoc = {}));
|
|
@ -0,0 +1,139 @@
|
||||||
|
module.exports = function(grunt)
|
||||||
|
{
|
||||||
|
grunt.file.setBase('../../../');
|
||||||
|
grunt.initConfig({
|
||||||
|
pkg: grunt.file.readJSON('package.json'),
|
||||||
|
ts: {
|
||||||
|
themeCustom: {
|
||||||
|
options: {
|
||||||
|
sourceMap: false,
|
||||||
|
module: 'amd',
|
||||||
|
basePath: 'themes',
|
||||||
|
declaration: false
|
||||||
|
},
|
||||||
|
src: [
|
||||||
|
'config/typedoc/custom-theme/assets/js/src/lib/**/*.ts',
|
||||||
|
'config/typedoc/custom-theme/assets/js/src/typedoc/Application.ts',
|
||||||
|
'config/typedoc/custom-theme/assets/js/src/typedoc/components/**/*.ts',
|
||||||
|
'config/typedoc/custom-theme/assets/js/src/typedoc/services/**/*.ts',
|
||||||
|
'config/typedoc/custom-theme/assets/js/src/typedoc/utils/**/*.ts',
|
||||||
|
'config/typedoc/custom-theme/assets/js/src/~bootstrap.ts'
|
||||||
|
],
|
||||||
|
out: 'config/typedoc/custom-theme/assets/js/main.js'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
uglify: {
|
||||||
|
themeCustom: {
|
||||||
|
options: {
|
||||||
|
mangle: false
|
||||||
|
},
|
||||||
|
files: {
|
||||||
|
'config/typedoc/custom-theme/bin/default/assets/js/main.js': [
|
||||||
|
'config/typedoc/custom-theme/assets/js/lib/jquery-2.1.1.min.js',
|
||||||
|
'config/typedoc/custom-theme/assets/js/lib/underscore-1.6.0.min.js',
|
||||||
|
'config/typedoc/custom-theme/assets/js/lib/backbone-1.1.2.min.js',
|
||||||
|
'config/typedoc/custom-theme/assets/js/lib/lunr.min.js',
|
||||||
|
'config/typedoc/custom-theme/assets/js/main.js'
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
'string-replace': {
|
||||||
|
themeMinimal: {
|
||||||
|
files: {
|
||||||
|
'config/typedoc/custom-theme/bin/minimal/layouts/default.hbs': ['src/minimal/layouts/default.hbs']
|
||||||
|
},
|
||||||
|
options: {
|
||||||
|
replacements: [{
|
||||||
|
pattern: /{{ CSS }}/g,
|
||||||
|
replacement: function() {
|
||||||
|
var css = grunt.file.read('bin/default/assets/css/main.css');
|
||||||
|
return css.replace(/url\(([^\)]*)\)/g, function(match, file) {
|
||||||
|
if (match.indexOf(':') != -1) return match;
|
||||||
|
var path = require('path'), fs = require('fs');
|
||||||
|
var file = path.resolve('bin/default/assets/css', file);
|
||||||
|
var data = fs.readFileSync(file, 'base64');
|
||||||
|
return 'url(data:image/png;base64,' + data + ')';
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
pattern: /{{ JS }}/g,
|
||||||
|
replacement: function() {
|
||||||
|
return grunt.file.read('bin/default/assets/js/main.js').replace('{{', '{/**/{');
|
||||||
|
}
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
sass: {
|
||||||
|
options: {
|
||||||
|
style: 'compact',
|
||||||
|
unixNewlines: true
|
||||||
|
},
|
||||||
|
themeCustom: {
|
||||||
|
files: [{
|
||||||
|
expand: true,
|
||||||
|
cwd: 'config/typedoc/custom-theme/assets/css',
|
||||||
|
src: 'config/typedoc/custom-theme/**/*.sass',
|
||||||
|
dest: 'config/typedoc/custom-theme/bin/assets/css',
|
||||||
|
ext: '.css'
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
autoprefixer: {
|
||||||
|
options: {
|
||||||
|
cascade: false
|
||||||
|
},
|
||||||
|
themeCustom: {
|
||||||
|
expand: true,
|
||||||
|
src: 'config/typedoc/custom-theme/bin/**/*.css',
|
||||||
|
dest: './'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
copy: {
|
||||||
|
plugin: {
|
||||||
|
files: [{
|
||||||
|
expand: true,
|
||||||
|
cwd: 'src',
|
||||||
|
src: ['*.js'],
|
||||||
|
dest: 'config/typedoc/custom-theme/bin'
|
||||||
|
}]
|
||||||
|
},
|
||||||
|
themeCustom: {
|
||||||
|
files: [{
|
||||||
|
expand: true,
|
||||||
|
cwd: 'config/typedoc/custom-theme',
|
||||||
|
src: ['**/*.hbs', '**/*.png'],
|
||||||
|
dest: 'config/typedoc/custom-theme/bin'
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
js: {
|
||||||
|
files: ['config/typedoc/custom-theme/assets/js/src/**/*.ts'],
|
||||||
|
tasks: ['js']
|
||||||
|
},
|
||||||
|
css: {
|
||||||
|
files: ['config/typedoc/custom-theme/assets/css/**/*'],
|
||||||
|
tasks: ['css']
|
||||||
|
},
|
||||||
|
custom: {
|
||||||
|
files: ['config/typedoc/custom-theme/**/*.hbs'],
|
||||||
|
tasks: ['copy', 'string-replace']
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
grunt.loadNpmTasks('grunt-contrib-watch');
|
||||||
|
grunt.loadNpmTasks('grunt-contrib-sass');
|
||||||
|
grunt.loadNpmTasks('grunt-contrib-uglify');
|
||||||
|
grunt.loadNpmTasks('grunt-contrib-copy');
|
||||||
|
grunt.loadNpmTasks('grunt-string-replace');
|
||||||
|
grunt.loadNpmTasks('grunt-autoprefixer');
|
||||||
|
grunt.loadNpmTasks('grunt-ts');
|
||||||
|
|
||||||
|
grunt.registerTask('css', ['sass', 'autoprefixer']);
|
||||||
|
grunt.registerTask('js', ['ts:themeCustom', 'uglify']);
|
||||||
|
grunt.registerTask('default', ['copy', 'css', 'js', 'string-replace']);
|
||||||
|
};
|
|
@ -0,0 +1,51 @@
|
||||||
|
<!doctype html>
|
||||||
|
<html class="default no-js">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<title>{{#ifCond model.name '==' project.name}}{{project.name}}{{else}}{{model.name}} | {{project.name}}{{/ifCond}}</title>
|
||||||
|
<meta name="description" content="">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="{{relativeURL "assets/css/main.css"}}">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
{{> header}}
|
||||||
|
|
||||||
|
<div class="container container-main">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-8 col-content">
|
||||||
|
{{{contents}}}
|
||||||
|
</div>
|
||||||
|
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
||||||
|
<nav class="tsd-navigation primary">
|
||||||
|
<ul>
|
||||||
|
{{#each navigation.children}}
|
||||||
|
{{> navigation}}
|
||||||
|
{{/each}}
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
<nav class="tsd-navigation secondary menu-sticky">
|
||||||
|
<ul class="before-current">
|
||||||
|
{{#each toc.children}}
|
||||||
|
{{> toc.root}}
|
||||||
|
{{/each}}
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{{> footer}}
|
||||||
|
|
||||||
|
<div class="overlay"></div>
|
||||||
|
<script src="{{relativeURL "assets/js/main.js"}}"></script>
|
||||||
|
<script>if (location.protocol == 'file:') document.write('<script src="{{relativeURL "assets/js/search.js"}}"><' + '/script>');</script>
|
||||||
|
|
||||||
|
{{> analytics}}
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,11 @@
|
||||||
|
{{#if settings.gaID}}
|
||||||
|
<script>
|
||||||
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||||||
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||||||
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||||
|
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
||||||
|
|
||||||
|
ga('create', '{{settings.gaID}}', '{{settings.gaSite}}');
|
||||||
|
ga('send', 'pageview');
|
||||||
|
</script>
|
||||||
|
{{/if}}
|
|
@ -0,0 +1,16 @@
|
||||||
|
{{#if parent}}
|
||||||
|
{{#with parent}}{{> breadcrumb}}{{/with}}
|
||||||
|
<li>
|
||||||
|
{{#if url}}
|
||||||
|
<a href="{{relativeURL url}}">{{name}}</a>
|
||||||
|
{{else}}
|
||||||
|
<span>{{name}}</span>
|
||||||
|
{{/if}}
|
||||||
|
</li>
|
||||||
|
{{else}}
|
||||||
|
{{#if url}}
|
||||||
|
<li>
|
||||||
|
<a href="{{relativeURL url}}">Globals</a>
|
||||||
|
</li>
|
||||||
|
{{/if}}
|
||||||
|
{{/if}}
|
|
@ -0,0 +1,22 @@
|
||||||
|
{{#with comment}}
|
||||||
|
{{#if hasVisibleComponent}}
|
||||||
|
<div class="tsd-comment tsd-typography">
|
||||||
|
{{#if shortText}}
|
||||||
|
<div class="lead">
|
||||||
|
{{#markdown}}{{{shortText}}}{{/markdown}}
|
||||||
|
</div>
|
||||||
|
{{/if}}
|
||||||
|
{{#if text}}
|
||||||
|
{{#markdown}}{{{text}}}{{/markdown}}
|
||||||
|
{{/if}}
|
||||||
|
{{#if tags}}
|
||||||
|
<dl class="tsd-comment-tags">
|
||||||
|
{{#each tags}}
|
||||||
|
<dt>{{tagName}}</dt>
|
||||||
|
<dd>{{#markdown}}{{{text}}}{{/markdown}}</dd>
|
||||||
|
{{/each}}
|
||||||
|
</dl>
|
||||||
|
{{/if}}
|
||||||
|
</div>
|
||||||
|
{{/if}}
|
||||||
|
{{/with}}
|
|
@ -0,0 +1,68 @@
|
||||||
|
|
||||||
|
<footer{{#unless settings.hideGenerator}} class="with-border-bottom"{{/unless}}>
|
||||||
|
<div class="container">
|
||||||
|
<h2>Legend</h2>
|
||||||
|
<div class="tsd-legend-group">
|
||||||
|
<ul class="tsd-legend">
|
||||||
|
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
||||||
|
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
||||||
|
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
||||||
|
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
||||||
|
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||||
|
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||||
|
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||||
|
<li class="tsd-kind-type-alias tsd-has-type-parameter"><span class="tsd-kind-icon">Type alias with type parameter</span></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
<ul class="tsd-legend">
|
||||||
|
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||||
|
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
||||||
|
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
||||||
|
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="tsd-legend">
|
||||||
|
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
||||||
|
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
||||||
|
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
||||||
|
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
||||||
|
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
||||||
|
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="tsd-legend">
|
||||||
|
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
||||||
|
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
||||||
|
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
||||||
|
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
||||||
|
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
||||||
|
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
||||||
|
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="tsd-legend">
|
||||||
|
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
||||||
|
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
||||||
|
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
||||||
|
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="tsd-legend">
|
||||||
|
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
||||||
|
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
||||||
|
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="tsd-legend">
|
||||||
|
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
||||||
|
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
||||||
|
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
||||||
|
</ul>
|
||||||
|
<ul class="tsd-legend">
|
||||||
|
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
||||||
|
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
{{#unless settings.hideGenerator}}
|
||||||
|
<div class="container tsd-generator">
|
||||||
|
<p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p>
|
||||||
|
</div>
|
||||||
|
{{/unless}}
|
|
@ -0,0 +1,73 @@
|
||||||
|
<header>
|
||||||
|
<div class="tsd-page-toolbar">
|
||||||
|
<div class="container">
|
||||||
|
<div class="table-wrap">
|
||||||
|
<div class="table-cell" id="tsd-search" data-index="{{relativeURL "assets/js/search.js"}}" data-base="{{relativeURL "./"}}">
|
||||||
|
<div class="field">
|
||||||
|
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
||||||
|
<input id="tsd-search-field" type="text" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<ul class="results">
|
||||||
|
<li class="state loading">Preparing search index...</li>
|
||||||
|
<li class="state failure">The search index is not available</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-node-client/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="table-cell" id="tsd-widgets">
|
||||||
|
<div id="tsd-filter">
|
||||||
|
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
||||||
|
<div class="tsd-filter-group">
|
||||||
|
<div class="tsd-select" id="tsd-filter-visibility">
|
||||||
|
<span class="tsd-select-label">All</span>
|
||||||
|
<ul class="tsd-select-list">
|
||||||
|
<li data-value="public">Public</li>
|
||||||
|
<li data-value="protected">Public/Protected</li>
|
||||||
|
<li data-value="private" class="selected">All</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<input type="checkbox" id="tsd-filter-inherited" checked />
|
||||||
|
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
||||||
|
|
||||||
|
{{#unless settings.excludeExternals}}
|
||||||
|
<input type="checkbox" id="tsd-filter-externals" checked />
|
||||||
|
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
|
||||||
|
{{/unless}}
|
||||||
|
|
||||||
|
{{#unless settings.excludeNotExported}}
|
||||||
|
<input type="checkbox" id="tsd-filter-only-exported" />
|
||||||
|
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
|
||||||
|
{{/unless}}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="tsd-page-title">
|
||||||
|
<div class="container">
|
||||||
|
<ul class="tsd-breadcrumb">
|
||||||
|
{{#with model}}{{> breadcrumb}}{{/with}}
|
||||||
|
</ul>
|
||||||
|
<h1>{{#compact}}
|
||||||
|
{{model.kindString}}
|
||||||
|
{{model.name}}
|
||||||
|
{{#if model.typeParameters}}
|
||||||
|
<
|
||||||
|
{{#each model.typeParameters}}
|
||||||
|
{{#if @index}}, {{/if}}
|
||||||
|
{{name}}
|
||||||
|
{{/each}}
|
||||||
|
>
|
||||||
|
{{/if}}
|
||||||
|
{{/compact}}</h1>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</header>
|
|
@ -0,0 +1,17 @@
|
||||||
|
<ul class="tsd-hierarchy">
|
||||||
|
{{#each types}}
|
||||||
|
<li>
|
||||||
|
{{#if ../isTarget}}
|
||||||
|
<span class="target">{{this}}</span>
|
||||||
|
{{else}}
|
||||||
|
{{> type}}
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{#if @last}}
|
||||||
|
{{#with ../next}}
|
||||||
|
{{> hierarchy}}
|
||||||
|
{{/with}}
|
||||||
|
{{/if}}
|
||||||
|
</li>
|
||||||
|
{{/each}}
|
||||||
|
</ul>
|
|
@ -0,0 +1,19 @@
|
||||||
|
{{#if groups}}
|
||||||
|
<section class="tsd-panel-group tsd-index-group">
|
||||||
|
<h2>Index</h2>
|
||||||
|
<section class="tsd-panel tsd-index-panel">
|
||||||
|
<div class="tsd-index-content">
|
||||||
|
{{#each groups}}
|
||||||
|
<section class="tsd-index-section {{cssClasses}}">
|
||||||
|
<h3>{{title}}</h3>
|
||||||
|
<ul class="tsd-index-list">
|
||||||
|
{{#each children}}
|
||||||
|
<li class="{{cssClasses}}"><a href="{{relativeURL url}}" class="tsd-kind-icon">{{#if name}}{{{wbr name}}}{{else}}<em>{{{wbr kindString}}}</em>{{/if}}</a></li>
|
||||||
|
{{/each}}
|
||||||
|
</ul>
|
||||||
|
</section>
|
||||||
|
{{/each}}
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
|
{{/if}}
|
|
@ -0,0 +1,36 @@
|
||||||
|
<div class="tsd-signature tsd-kind-icon">{{#compact}}
|
||||||
|
{{{wbr name}}}
|
||||||
|
{{#if typeParameters}}
|
||||||
|
<
|
||||||
|
{{#each typeParameters}}
|
||||||
|
{{#if @index}}, {{/if}}
|
||||||
|
{{name}}
|
||||||
|
{{/each}}
|
||||||
|
>
|
||||||
|
{{/if}}
|
||||||
|
<span class="tsd-signature-symbol">{{#if isOptional}}?{{/if}}:</span> {{#with type}}{{>type}}{{/with}}
|
||||||
|
{{#if defaultValue}}
|
||||||
|
<span class="tsd-signature-symbol">
|
||||||
|
=
|
||||||
|
{{defaultValue}}
|
||||||
|
</span>
|
||||||
|
{{/if}}
|
||||||
|
{{/compact}}</div>
|
||||||
|
|
||||||
|
{{> member.sources}}
|
||||||
|
|
||||||
|
{{> comment}}
|
||||||
|
|
||||||
|
{{#if typeParameters}}
|
||||||
|
<h4 class="tsd-type-parameters-title">Type parameters</h4>
|
||||||
|
{{> typeParameters}}
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{#if type.declaration}}
|
||||||
|
<div class="tsd-type-declaration">
|
||||||
|
<h4>Type declaration</h4>
|
||||||
|
{{#with type.declaration}}
|
||||||
|
{{> parameter}}
|
||||||
|
{{/with}}
|
||||||
|
</div>
|
||||||
|
{{/if}}
|
|
@ -0,0 +1,37 @@
|
||||||
|
<ul class="tsd-signatures {{cssClasses}}">
|
||||||
|
{{#if getSignature}}
|
||||||
|
{{#with getSignature}}
|
||||||
|
<li class="tsd-signature tsd-kind-icon">{{#compact}}
|
||||||
|
<span class="tsd-signature-symbol">get</span>
|
||||||
|
{{../name}}
|
||||||
|
{{> member.signature.title hideName=true }}
|
||||||
|
{{/compact}}</li>
|
||||||
|
{{/with}}
|
||||||
|
{{/if}}
|
||||||
|
{{#if setSignature}}
|
||||||
|
{{#with setSignature}}
|
||||||
|
<li class="tsd-signature tsd-kind-icon">{{#compact}}
|
||||||
|
<span class="tsd-signature-symbol">set</span>
|
||||||
|
{{../name}}
|
||||||
|
{{> member.signature.title hideName=true }}
|
||||||
|
{{/compact}}</li>
|
||||||
|
{{/with}}
|
||||||
|
{{/if}}
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="tsd-descriptions">
|
||||||
|
{{#if getSignature}}
|
||||||
|
{{#with getSignature}}
|
||||||
|
<li class="tsd-description">
|
||||||
|
{{> member.signature.body }}
|
||||||
|
</li>
|
||||||
|
{{/with}}
|
||||||
|
{{/if}}
|
||||||
|
{{#if setSignature}}
|
||||||
|
{{#with setSignature}}
|
||||||
|
<li class="tsd-description">
|
||||||
|
{{> member.signature.body }}
|
||||||
|
</li>
|
||||||
|
{{/with}}
|
||||||
|
{{/if}}
|
||||||
|
</ul>
|
|
@ -0,0 +1,22 @@
|
||||||
|
<section class="tsd-panel tsd-member {{cssClasses}}">
|
||||||
|
<a name="{{anchor}}" class="tsd-anchor"></a>
|
||||||
|
{{#if name}}
|
||||||
|
<h3>{{#each flags}}<span class="tsd-flag ts-flag{{this}}">{{this}}</span> {{/each}}{{{wbr name}}}</h3>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{#if signatures}}
|
||||||
|
{{> member.signatures}}
|
||||||
|
{{else}}{{#if hasGetterOrSetter}}
|
||||||
|
{{> member.getterSetter}}
|
||||||
|
{{else}}
|
||||||
|
{{> member.declaration}}
|
||||||
|
{{/if}}{{/if}}
|
||||||
|
|
||||||
|
{{#each groups}}
|
||||||
|
{{#each children}}
|
||||||
|
{{#unless hasOwnDocument}}
|
||||||
|
{{> member}}
|
||||||
|
{{/unless}}
|
||||||
|
{{/each}}
|
||||||
|
{{/each}}
|
||||||
|
</section>
|
|
@ -0,0 +1,56 @@
|
||||||
|
{{#unless hideSources}}
|
||||||
|
{{> member.sources}}
|
||||||
|
{{/unless}}
|
||||||
|
|
||||||
|
{{> comment}}
|
||||||
|
|
||||||
|
{{#if typeParameters}}
|
||||||
|
<h4 class="tsd-type-parameters-title">Type parameters</h4>
|
||||||
|
{{> typeParameters}}
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{#if parameters}}
|
||||||
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||||
|
<ul class="tsd-parameters">
|
||||||
|
{{#each parameters}}
|
||||||
|
<li>
|
||||||
|
<h5>{{#compact}}
|
||||||
|
{{#each flags}}
|
||||||
|
<span class="tsd-flag ts-flag{{this}}">{{this}}</span>
|
||||||
|
{{/each}}
|
||||||
|
{{#if flags.isRest}}<span class="tsd-signature-symbol">...</span>{{/if}}
|
||||||
|
{{name}}:
|
||||||
|
{{#with type}}{{>type}}{{/with}}
|
||||||
|
{{#if defaultValue}}
|
||||||
|
<span class="tsd-signature-symbol">
|
||||||
|
=
|
||||||
|
{{defaultValue}}
|
||||||
|
</span>
|
||||||
|
{{/if}}
|
||||||
|
{{/compact}}</h5>
|
||||||
|
|
||||||
|
{{> comment}}
|
||||||
|
|
||||||
|
{{#if type.declaration}}
|
||||||
|
{{#with type.declaration}}
|
||||||
|
{{> parameter}}
|
||||||
|
{{/with}}
|
||||||
|
{{/if}}
|
||||||
|
</li>
|
||||||
|
{{/each}}
|
||||||
|
</ul>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{#if type}}
|
||||||
|
<h4 class="tsd-returns-title">Returns {{#with type}}{{>type}}{{/with}}</h4>
|
||||||
|
|
||||||
|
{{#if comment.returns}}
|
||||||
|
{{#markdown}}{{{comment.returns}}}{{/markdown}}
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{#if type.declaration}}
|
||||||
|
{{#with type.declaration}}
|
||||||
|
{{> parameter}}
|
||||||
|
{{/with}}
|
||||||
|
{{/if}}
|
||||||
|
{{/if}}
|
|
@ -0,0 +1,28 @@
|
||||||
|
{{#compact}}
|
||||||
|
{{#unless hideName}}{{{wbr name}}}{{/unless}}
|
||||||
|
{{#if typeParameters}}
|
||||||
|
<
|
||||||
|
{{#each typeParameters}}
|
||||||
|
{{#if @index}}, {{/if}}
|
||||||
|
{{name}}
|
||||||
|
{{/each}}
|
||||||
|
>
|
||||||
|
{{/if}}
|
||||||
|
<span class="tsd-signature-symbol">(</span>
|
||||||
|
{{#each parameters}}
|
||||||
|
{{#if @index}}, {{/if}}
|
||||||
|
{{#if flags.isRest}}<span class="tsd-signature-symbol">...</span>{{/if}}
|
||||||
|
{{name}}
|
||||||
|
<span class="tsd-signature-symbol">
|
||||||
|
{{#if flags.isOptional}}?{{/if}}
|
||||||
|
{{#if defaultValue}}?{{/if}}
|
||||||
|
:
|
||||||
|
</span>
|
||||||
|
{{#with type}}{{>type}}{{/with}}
|
||||||
|
{{/each}}
|
||||||
|
<span class="tsd-signature-symbol">)</span>
|
||||||
|
{{#if type}}
|
||||||
|
<span class="tsd-signature-symbol">: </span>
|
||||||
|
{{#with type}}{{>type}}{{/with}}
|
||||||
|
{{/if}}
|
||||||
|
{{/compact}}
|
|
@ -0,0 +1,13 @@
|
||||||
|
<ul class="tsd-signatures {{cssClasses}}">
|
||||||
|
{{#each signatures}}
|
||||||
|
<li class="tsd-signature tsd-kind-icon">{{> member.signature.title }}</li>
|
||||||
|
{{/each}}
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="tsd-descriptions">
|
||||||
|
{{#each signatures}}
|
||||||
|
<li class="tsd-description">
|
||||||
|
{{> member.signature.body }}
|
||||||
|
</li>
|
||||||
|
{{/each}}
|
||||||
|
</ul>
|
|
@ -0,0 +1,22 @@
|
||||||
|
<aside class="tsd-sources">
|
||||||
|
{{#if implementationOf}}
|
||||||
|
<p>Implementation of {{#with implementationOf}}{{> typeAndParent}}{{/with}}</p>
|
||||||
|
{{/if}}
|
||||||
|
{{#if inheritedFrom}}
|
||||||
|
<p>Inherited from {{#with inheritedFrom}}{{> typeAndParent}}{{/with}}</p>
|
||||||
|
{{/if}}
|
||||||
|
{{#if overwrites}}
|
||||||
|
<p>Overrides {{#with overwrites}}{{> typeAndParent}}{{/with}}</p>
|
||||||
|
{{/if}}
|
||||||
|
{{#if sources}}
|
||||||
|
<ul>
|
||||||
|
{{#each sources}}
|
||||||
|
{{#if url}}
|
||||||
|
<li>Defined in <a href="{{url}}">{{fileName}}:{{line}}</a></li>
|
||||||
|
{{else}}
|
||||||
|
<li>Defined in {{fileName}}:{{line}}</li>
|
||||||
|
{{/if}}
|
||||||
|
{{/each}}
|
||||||
|
</ul>
|
||||||
|
{{/if}}
|
||||||
|
</aside>
|
|
@ -0,0 +1,8 @@
|
||||||
|
<section class="tsd-panel-group tsd-member-group {{cssClasses}}">
|
||||||
|
<h2>{{title}}</h2>
|
||||||
|
{{#each children}}
|
||||||
|
{{#unless hasOwnDocument}}
|
||||||
|
{{> member}}
|
||||||
|
{{/unless}}
|
||||||
|
{{/each}}
|
||||||
|
</section>
|
|
@ -0,0 +1,5 @@
|
||||||
|
{{#each groups}}
|
||||||
|
{{#unless allChildrenHaveOwnDocument}}
|
||||||
|
{{> members.group}}
|
||||||
|
{{/unless}}
|
||||||
|
{{/each}}
|
|
@ -0,0 +1,26 @@
|
||||||
|
{{#if isVisible}}
|
||||||
|
{{#if isLabel}}
|
||||||
|
<li class="label {{cssClasses}}">
|
||||||
|
<span>{{{wbr title}}}</span>
|
||||||
|
</li>
|
||||||
|
{{else}}
|
||||||
|
{{#if isGlobals}}
|
||||||
|
<li class="globals {{#if isInPath}}current{{/if}} {{cssClasses}}">
|
||||||
|
<a href="{{relativeURL url}}"><em>{{{wbr title}}}</em></a>
|
||||||
|
</li>
|
||||||
|
{{else}}
|
||||||
|
<li class="{{#if isInPath}}current{{/if}} {{cssClasses}}">
|
||||||
|
<a href="{{relativeURL url}}">{{{wbr title}}}</a>
|
||||||
|
{{#if isInPath}}
|
||||||
|
{{#if children}}
|
||||||
|
<ul>
|
||||||
|
{{#each children}}
|
||||||
|
{{> navigation}}
|
||||||
|
{{/each}}
|
||||||
|
</ul>
|
||||||
|
{{/if}}
|
||||||
|
{{/if}}
|
||||||
|
</li>
|
||||||
|
{{/if}}
|
||||||
|
{{/if}}
|
||||||
|
{{/if}}
|
|
@ -0,0 +1,81 @@
|
||||||
|
<ul class="tsd-parameters">
|
||||||
|
{{#if signatures}}
|
||||||
|
<li class="tsd-parameter-siganture">
|
||||||
|
<ul class="tsd-signatures {{cssClasses}}">
|
||||||
|
{{#each signatures}}
|
||||||
|
<li class="tsd-signature tsd-kind-icon">{{> member.signature.title hideName=true }}</li>
|
||||||
|
{{/each}}
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="tsd-descriptions">
|
||||||
|
{{#each signatures}}
|
||||||
|
<li class="tsd-description">{{> member.signature.body hideSources=true }}</li>
|
||||||
|
{{/each}}
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
{{/if}}
|
||||||
|
{{#if indexSignature}}
|
||||||
|
<li class="tsd-parameter-index-signature">
|
||||||
|
<h5>{{#compact}}
|
||||||
|
<span class="tsd-signature-symbol">[</span>
|
||||||
|
{{#each indexSignature.parameters}}
|
||||||
|
{{#if flags.isRest}}<span class="tsd-signature-symbol">...</span>{{/if}}{{name}}: {{#with type}}{{>type}}{{/with}}
|
||||||
|
{{/each}}
|
||||||
|
<span class="tsd-signature-symbol">]: </span>
|
||||||
|
{{#with indexSignature.type}}{{>type}}{{/with}}
|
||||||
|
{{/compact}}</h5>
|
||||||
|
|
||||||
|
{{#with indexSignature}}
|
||||||
|
{{> comment}}
|
||||||
|
{{/with}}
|
||||||
|
|
||||||
|
{{#if indexSignature.type.declaration}}
|
||||||
|
{{#with indexSignature.type.declaration}}
|
||||||
|
{{> parameter}}
|
||||||
|
{{/with}}
|
||||||
|
{{/if}}
|
||||||
|
</li>
|
||||||
|
{{/if}}
|
||||||
|
{{#each children}}
|
||||||
|
<li class="tsd-parameter">
|
||||||
|
{{#if signatures}}
|
||||||
|
<h5>{{#compact}}
|
||||||
|
{{#if flags.isRest}}<span class="tsd-signature-symbol">...</span>{{/if}}
|
||||||
|
{{{wbr name}}}
|
||||||
|
<span class="tsd-signature-symbol">
|
||||||
|
{{#if isOptional}}?{{/if}}
|
||||||
|
:
|
||||||
|
</span>
|
||||||
|
function
|
||||||
|
{{/compact}}</h5>
|
||||||
|
|
||||||
|
{{> member.signatures}}
|
||||||
|
{{else}}
|
||||||
|
<h5>{{#compact}}
|
||||||
|
{{#each flags}}
|
||||||
|
<span class="tsd-flag ts-flag{{this}}">{{this}}</span>
|
||||||
|
{{/each}}
|
||||||
|
{{#if flags.isRest}}<span class="tsd-signature-symbol">...</span>{{/if}}
|
||||||
|
{{{wbr name}}}
|
||||||
|
<span class="tsd-signature-symbol">
|
||||||
|
{{#if flags.isOptional}}?{{/if}}
|
||||||
|
:
|
||||||
|
</span>
|
||||||
|
{{#with type}}{{>type}}{{/with}}
|
||||||
|
{{/compact}}</h5>
|
||||||
|
|
||||||
|
{{> comment}}
|
||||||
|
|
||||||
|
{{#if children}}
|
||||||
|
{{> parameter}}
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{#if type.declaration}}
|
||||||
|
{{#with type.declaration}}
|
||||||
|
{{> parameter}}
|
||||||
|
{{/with}}
|
||||||
|
{{/if}}
|
||||||
|
{{/if}}
|
||||||
|
</li>
|
||||||
|
{{/each}}
|
||||||
|
</ul>
|
|
@ -0,0 +1,10 @@
|
||||||
|
<li class="{{#if isInPath}}current{{/if}} {{cssClasses}}">
|
||||||
|
<a href="{{relativeURL url}}" class="tsd-kind-icon">{{{wbr title}}}</a>
|
||||||
|
{{#if children}}
|
||||||
|
<ul>
|
||||||
|
{{#each children}}
|
||||||
|
{{> toc}}
|
||||||
|
{{/each}}
|
||||||
|
</ul>
|
||||||
|
{{/if}}
|
||||||
|
</li>
|
|
@ -0,0 +1,18 @@
|
||||||
|
{{#if isInPath}}
|
||||||
|
</ul>
|
||||||
|
<ul class="current">
|
||||||
|
{{/if}}
|
||||||
|
<li class="{{#if isInPath}}current{{/if}} {{cssClasses}}">
|
||||||
|
<a href="{{relativeURL url}}" class="tsd-kind-icon">{{{wbr title}}}</a>
|
||||||
|
{{#if children}}
|
||||||
|
<ul>
|
||||||
|
{{#each children}}
|
||||||
|
{{> toc}}
|
||||||
|
{{/each}}
|
||||||
|
</ul>
|
||||||
|
{{/if}}
|
||||||
|
</li>
|
||||||
|
{{#if isInPath}}
|
||||||
|
</ul>
|
||||||
|
<ul class="after-current">
|
||||||
|
{{/if}}
|
|
@ -0,0 +1,83 @@
|
||||||
|
{{#if this}}
|
||||||
|
{{#if reflection}}
|
||||||
|
{{#compact}}
|
||||||
|
<a href="{{relativeURL reflection.url}}" class="tsd-signature-type">
|
||||||
|
{{reflection.name}}
|
||||||
|
</a>
|
||||||
|
{{#if typeArguments}}
|
||||||
|
<span class="tsd-signature-symbol"><</span>
|
||||||
|
|
||||||
|
{{#each typeArguments}}
|
||||||
|
{{#if @index}}
|
||||||
|
<span class="tsd-signature-symbol">, </span>
|
||||||
|
{{/if}}{{> type}}
|
||||||
|
{{/each}}
|
||||||
|
|
||||||
|
<span class="tsd-signature-symbol">></span>
|
||||||
|
{{/if}}
|
||||||
|
{{/compact}}
|
||||||
|
{{else}}
|
||||||
|
{{#if elementType}}
|
||||||
|
{{#with elementType}}
|
||||||
|
{{#compact}}
|
||||||
|
{{#if types}}
|
||||||
|
<span class="tsd-signature-symbol">(</span>
|
||||||
|
{{/if}}
|
||||||
|
{{> type}}
|
||||||
|
{{#if types}}
|
||||||
|
<span class="tsd-signature-symbol">)</span>
|
||||||
|
{{/if}}<span class="tsd-signature-symbol">[]</span>
|
||||||
|
{{/compact}}
|
||||||
|
{{/with}}
|
||||||
|
{{else}}
|
||||||
|
{{#if types}}
|
||||||
|
{{#each types}}
|
||||||
|
{{#if @index}}
|
||||||
|
<span class="tsd-signature-symbol"> {{#ifCond ../type '==' 'intersection'}}&{{else}}|{{/ifCond}} </span>
|
||||||
|
{{/if}}{{> type}}
|
||||||
|
{{/each}}
|
||||||
|
{{else}}
|
||||||
|
{{#if elements}}
|
||||||
|
{{#compact}}
|
||||||
|
<span class="tsd-signature-symbol">[</span>
|
||||||
|
|
||||||
|
{{#each elements}}
|
||||||
|
{{#if @index}}
|
||||||
|
<span class="tsd-signature-symbol">, </span>
|
||||||
|
{{/if}}{{> type}}
|
||||||
|
{{/each}}
|
||||||
|
|
||||||
|
<span class="tsd-signature-symbol">]</span>
|
||||||
|
{{/compact}}
|
||||||
|
{{else}}
|
||||||
|
{{#compact}}
|
||||||
|
<span class="tsd-signature-type">
|
||||||
|
{{#if name}}
|
||||||
|
{{name}}
|
||||||
|
{{else}}
|
||||||
|
{{#if value}}
|
||||||
|
"{{value}}"
|
||||||
|
{{else}}
|
||||||
|
{{this}}
|
||||||
|
{{/if}}
|
||||||
|
{{/if}}
|
||||||
|
</span>
|
||||||
|
{{#if typeArguments}}
|
||||||
|
<span class="tsd-signature-symbol"><</span>
|
||||||
|
|
||||||
|
{{#each typeArguments}}
|
||||||
|
{{#if @index}}
|
||||||
|
<span class="tsd-signature-symbol">, </span>
|
||||||
|
{{/if}}{{> type}}
|
||||||
|
{{/each}}
|
||||||
|
|
||||||
|
<span class="tsd-signature-symbol">></span>
|
||||||
|
{{/if}}
|
||||||
|
{{/compact}}
|
||||||
|
{{/if}}
|
||||||
|
{{/if}}
|
||||||
|
{{/if}}
|
||||||
|
{{/if}}
|
||||||
|
{{else}}
|
||||||
|
<span class="tsd-signature-type">void</span>
|
||||||
|
{{/if}}
|
|
@ -0,0 +1,42 @@
|
||||||
|
{{#compact}}
|
||||||
|
{{#if this}}
|
||||||
|
{{#if elementType}}
|
||||||
|
{{#with elementType}}
|
||||||
|
{{> typeAndParent}}
|
||||||
|
{{/with}}
|
||||||
|
[]
|
||||||
|
{{else}}
|
||||||
|
{{#if reflection}}
|
||||||
|
{{#ifSignature reflection}}
|
||||||
|
{{#if reflection.parent.parent.url}}
|
||||||
|
<a href="{{relativeURL reflection.parent.parent.url}}">{{reflection.parent.parent.name}}</a>
|
||||||
|
{{else}}
|
||||||
|
{{reflection.parent.parent.name}}
|
||||||
|
{{/if}}
|
||||||
|
.
|
||||||
|
{{#if reflection.parent.url}}
|
||||||
|
<a href="{{relativeURL reflection.parent.url}}">{{reflection.parent.name}}</a>
|
||||||
|
{{else}}
|
||||||
|
{{reflection.parent.name}}
|
||||||
|
{{/if}}
|
||||||
|
{{else}}
|
||||||
|
{{#if reflection.parent.url}}
|
||||||
|
<a href="{{relativeURL reflection.parent.url}}">{{reflection.parent.name}}</a>
|
||||||
|
{{else}}
|
||||||
|
{{reflection.parent.name}}
|
||||||
|
{{/if}}
|
||||||
|
.
|
||||||
|
{{#if reflection.url}}
|
||||||
|
<a href="{{relativeURL reflection.url}}">{{reflection.name}}</a>
|
||||||
|
{{else}}
|
||||||
|
{{reflection.name}}
|
||||||
|
{{/if}}
|
||||||
|
{{/ifSignature}}
|
||||||
|
{{else}}
|
||||||
|
{{this}}
|
||||||
|
{{/if}}
|
||||||
|
{{/if}}
|
||||||
|
{{else}}
|
||||||
|
void
|
||||||
|
{{/if}}
|
||||||
|
{{/compact}}
|
|
@ -0,0 +1,14 @@
|
||||||
|
<ul class="tsd-type-parameters">
|
||||||
|
{{#each typeParameters}}
|
||||||
|
<li>
|
||||||
|
<h4>{{#compact}}
|
||||||
|
{{name}}
|
||||||
|
{{#if type}}
|
||||||
|
<span class="tsd-signature-symbol">: </span>
|
||||||
|
{{#with type}}{{> type}}{{/with}}
|
||||||
|
{{/if}}
|
||||||
|
{{/compact}}</h4>
|
||||||
|
{{> comment}}
|
||||||
|
</li>
|
||||||
|
{{/each}}
|
||||||
|
</ul>
|
|
@ -0,0 +1,3 @@
|
||||||
|
<div class="tsd-panel tsd-typography">
|
||||||
|
{{#markdown}}{{{model.readme}}}{{/markdown}}
|
||||||
|
</div>
|
|
@ -0,0 +1,79 @@
|
||||||
|
{{#with model}}
|
||||||
|
{{#if hasComment}}
|
||||||
|
<section class="tsd-panel tsd-comment">
|
||||||
|
{{> comment}}
|
||||||
|
</section>
|
||||||
|
{{/if}}
|
||||||
|
{{/with}}
|
||||||
|
|
||||||
|
{{#if model.typeParameters}}
|
||||||
|
<section class="tsd-panel tsd-type-parameters">
|
||||||
|
<h3>Type parameters</h3>
|
||||||
|
{{#with model}}{{> typeParameters}}{{/with}}
|
||||||
|
</section>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{#if model.typeHierarchy}}
|
||||||
|
<section class="tsd-panel tsd-hierarchy">
|
||||||
|
<h3>Hierarchy</h3>
|
||||||
|
{{#with model.typeHierarchy}}{{> hierarchy}}{{/with}}
|
||||||
|
</section>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{#if model.implementedTypes}}
|
||||||
|
<section class="tsd-panel">
|
||||||
|
<h3>Implements</h3>
|
||||||
|
<ul class="tsd-hierarchy">
|
||||||
|
{{#each model.implementedTypes}}
|
||||||
|
<li>{{> type}}</li>
|
||||||
|
{{/each}}
|
||||||
|
</ul>
|
||||||
|
</section>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{#if model.implementedBy}}
|
||||||
|
<section class="tsd-panel">
|
||||||
|
<h3>Implemented by</h3>
|
||||||
|
<ul class="tsd-hierarchy">
|
||||||
|
{{#each model.implementedBy}}
|
||||||
|
<li>{{> type}}</li>
|
||||||
|
{{/each}}
|
||||||
|
</ul>
|
||||||
|
</section>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{#if model.signatures}}
|
||||||
|
<section class="tsd-panel">
|
||||||
|
<h3 class="tsd-before-signature">Callable</h3>
|
||||||
|
{{#with model}}{{> member.signatures}}{{/with}}
|
||||||
|
</section>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{#if model.indexSignature}}
|
||||||
|
<section class="tsd-panel {{model.cssClasses}}">
|
||||||
|
<h3 class="tsd-before-signature">Indexable</h3>
|
||||||
|
<div class="tsd-signature tsd-kind-icon">{{#compact}}
|
||||||
|
<span class="tsd-signature-symbol">[</span>
|
||||||
|
{{#each model.indexSignature.parameters}}
|
||||||
|
{{name}}: {{#with type}}{{>type}}{{/with}}
|
||||||
|
{{/each}}
|
||||||
|
<span class="tsd-signature-symbol">]: </span>
|
||||||
|
{{#with model.indexSignature.type}}{{>type}}{{/with}}
|
||||||
|
{{/compact}}</div>
|
||||||
|
|
||||||
|
{{#with model.indexSignature}}
|
||||||
|
{{> comment}}
|
||||||
|
{{/with}}
|
||||||
|
|
||||||
|
{{#if model.indexSignature.type.declaration}}
|
||||||
|
{{#with model.indexSignature.type.declaration}}
|
||||||
|
{{> parameter}}
|
||||||
|
{{/with}}
|
||||||
|
{{/if}}
|
||||||
|
</section>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{#with model}}
|
||||||
|
{{> index}}
|
||||||
|
{{> members}}
|
||||||
|
{{/with}}
|
|
@ -7,15 +7,20 @@ module.exports = {
|
||||||
],
|
],
|
||||||
mode: "file",
|
mode: "file",
|
||||||
module: "commonjs",
|
module: "commonjs",
|
||||||
name: "OpenVidu Node Client",
|
name: "OpenVidu Browser",
|
||||||
target: "es5",
|
target: "es5",
|
||||||
externalPattern: "node_modules",
|
externalPattern: "node_modules",
|
||||||
|
exclude: [
|
||||||
|
"**/OpenViduInternal/Interfaces/Private/**",
|
||||||
|
"**/OpenViduInternal/WebRtcStats/WebRtcStats.ts",
|
||||||
|
"**/OpenViduInternal/VersionAdapter.ts"
|
||||||
|
],
|
||||||
excludeExternals: true,
|
excludeExternals: true,
|
||||||
excludePrivate: true,
|
excludePrivate: true,
|
||||||
theme: "default",
|
theme: "./config/typedoc/custom-theme/bin",
|
||||||
plugin: [
|
plugin: [
|
||||||
"typedoc-plugin-sourcefile-url",
|
"typedoc-plugin-sourcefile-url",
|
||||||
],
|
],
|
||||||
'sourcefile-url-prefix': "https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/",
|
'sourcefile-url-prefix': "https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/",
|
||||||
readme: "none"
|
readme: "none"
|
||||||
}
|
}
|
Before Width: | Height: | Size: 9.3 KiB After Width: | Height: | Size: 9.4 KiB |
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 28 KiB |
|
@ -3,10 +3,11 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<title>OpenVidu | OpenVidu Node Client</title>
|
<title>OpenVidu | OpenVidu Browser</title>
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="../index.html" class="title">OpenVidu Node Client</a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-node-client/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -108,7 +111,7 @@
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/OpenVidu.ts#L35">OpenVidu.ts:35</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu.ts#L35">OpenVidu.ts:35</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -149,7 +152,7 @@
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/OpenVidu.ts#L51">OpenVidu.ts:51</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu.ts#L51">OpenVidu.ts:51</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -178,7 +181,7 @@
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/OpenVidu.ts#L304">OpenVidu.ts:304</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu.ts#L304">OpenVidu.ts:304</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -213,7 +216,7 @@
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/OpenVidu.ts#L205">OpenVidu.ts:205</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu.ts#L205">OpenVidu.ts:205</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -248,7 +251,7 @@
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/OpenVidu.ts#L250">OpenVidu.ts:250</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu.ts#L250">OpenVidu.ts:250</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -273,7 +276,7 @@
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/OpenVidu.ts#L64">OpenVidu.ts:64</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu.ts#L64">OpenVidu.ts:64</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -303,7 +306,7 @@
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/OpenVidu.ts#L65">OpenVidu.ts:65</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu.ts#L65">OpenVidu.ts:65</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -341,7 +344,7 @@
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/OpenVidu.ts#L66">OpenVidu.ts:66</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu.ts#L66">OpenVidu.ts:66</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -383,7 +386,7 @@
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/OpenVidu.ts#L157">OpenVidu.ts:157</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu.ts#L157">OpenVidu.ts:157</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -504,6 +507,7 @@
|
||||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||||
|
<li class="tsd-kind-type-alias tsd-has-type-parameter"><span class="tsd-kind-icon">Type alias with type parameter</span></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="tsd-legend">
|
<ul class="tsd-legend">
|
||||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||||
|
|
|
@ -3,10 +3,11 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<title>Recording | OpenVidu Node Client</title>
|
<title>Recording | OpenVidu Browser</title>
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="../index.html" class="title">OpenVidu Node Client</a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-node-client/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -119,7 +122,7 @@
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/Recording.ts#L77">Recording.ts:77</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/Recording.ts#L77">Recording.ts:77</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||||
|
@ -141,7 +144,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">created<wbr>At<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
<div class="tsd-signature tsd-kind-icon">created<wbr>At<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/Recording.ts#L35">Recording.ts:35</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/Recording.ts#L35">Recording.ts:35</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -156,7 +159,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">duration<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol"> = 0</span></div>
|
<div class="tsd-signature tsd-kind-icon">duration<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol"> = 0</span></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/Recording.ts#L45">Recording.ts:45</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/Recording.ts#L45">Recording.ts:45</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -171,7 +174,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">has<wbr>Audio<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> = true</span></div>
|
<div class="tsd-signature tsd-kind-icon">has<wbr>Audio<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> = true</span></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/Recording.ts#L55">Recording.ts:55</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/Recording.ts#L55">Recording.ts:55</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -186,7 +189,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">has<wbr>Video<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> = true</span></div>
|
<div class="tsd-signature tsd-kind-icon">has<wbr>Video<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> = true</span></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/Recording.ts#L60">Recording.ts:60</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/Recording.ts#L60">Recording.ts:60</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -201,7 +204,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
<div class="tsd-signature tsd-kind-icon">id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/Recording.ts#L25">Recording.ts:25</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/Recording.ts#L25">Recording.ts:25</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -216,7 +219,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
<div class="tsd-signature tsd-kind-icon">name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/Recording.ts#L72">Recording.ts:72</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/Recording.ts#L72">Recording.ts:72</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -233,7 +236,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">recording<wbr>Layout<span class="tsd-signature-symbol">:</span> <a href="../enums/recordinglayout.html" class="tsd-signature-type">RecordingLayout</a></div>
|
<div class="tsd-signature tsd-kind-icon">recording<wbr>Layout<span class="tsd-signature-symbol">:</span> <a href="../enums/recordinglayout.html" class="tsd-signature-type">RecordingLayout</a></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/Recording.ts#L77">Recording.ts:77</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/Recording.ts#L77">Recording.ts:77</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -248,7 +251,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">session<wbr>Id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
<div class="tsd-signature tsd-kind-icon">session<wbr>Id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/Recording.ts#L30">Recording.ts:30</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/Recording.ts#L30">Recording.ts:30</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -263,7 +266,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">size<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol"> = 0</span></div>
|
<div class="tsd-signature tsd-kind-icon">size<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol"> = 0</span></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/Recording.ts#L40">Recording.ts:40</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/Recording.ts#L40">Recording.ts:40</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -278,7 +281,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">status<span class="tsd-signature-symbol">:</span> <a href="../enums/recording.status.html" class="tsd-signature-type">Status</a></div>
|
<div class="tsd-signature tsd-kind-icon">status<span class="tsd-signature-symbol">:</span> <a href="../enums/recording.status.html" class="tsd-signature-type">Status</a></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/Recording.ts#L65">Recording.ts:65</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/Recording.ts#L65">Recording.ts:65</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -293,7 +296,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">url<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
<div class="tsd-signature tsd-kind-icon">url<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/Recording.ts#L50">Recording.ts:50</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/Recording.ts#L50">Recording.ts:50</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -415,6 +418,7 @@
|
||||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||||
|
<li class="tsd-kind-type-alias tsd-has-type-parameter"><span class="tsd-kind-icon">Type alias with type parameter</span></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="tsd-legend">
|
<ul class="tsd-legend">
|
||||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||||
|
|
|
@ -3,10 +3,11 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<title>Session | OpenVidu Node Client</title>
|
<title>Session | OpenVidu Browser</title>
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="../index.html" class="title">OpenVidu Node Client</a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-node-client/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -111,7 +114,7 @@
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/Session.ts#L36">Session.ts:36</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/Session.ts#L36">Session.ts:36</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<h4 class="tsd-parameters-title">Parameters</h4>
|
<h4 class="tsd-parameters-title">Parameters</h4>
|
||||||
|
@ -142,7 +145,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">properties<span class="tsd-signature-symbol">:</span> <a href="../interfaces/sessionproperties.html" class="tsd-signature-type">SessionProperties</a></div>
|
<div class="tsd-signature tsd-kind-icon">properties<span class="tsd-signature-symbol">:</span> <a href="../interfaces/sessionproperties.html" class="tsd-signature-type">SessionProperties</a></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/Session.ts#L36">Session.ts:36</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/Session.ts#L36">Session.ts:36</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
</section>
|
</section>
|
||||||
|
@ -152,7 +155,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">session<wbr>Id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
<div class="tsd-signature tsd-kind-icon">session<wbr>Id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/Session.ts#L35">Session.ts:35</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/Session.ts#L35">Session.ts:35</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
</section>
|
</section>
|
||||||
|
@ -169,7 +172,7 @@
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/Session.ts#L58">Session.ts:58</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/Session.ts#L58">Session.ts:58</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -198,7 +201,7 @@
|
||||||
<li class="tsd-description">
|
<li class="tsd-description">
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/Session.ts#L49">Session.ts:49</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/Session.ts#L49">Session.ts:49</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -299,6 +302,7 @@
|
||||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||||
|
<li class="tsd-kind-type-alias tsd-has-type-parameter"><span class="tsd-kind-icon">Type alias with type parameter</span></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="tsd-legend">
|
<ul class="tsd-legend">
|
||||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||||
|
|
|
@ -3,10 +3,11 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<title>MediaMode | OpenVidu Node Client</title>
|
<title>MediaMode | OpenVidu Browser</title>
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="../index.html" class="title">OpenVidu Node Client</a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-node-client/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -86,7 +89,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">RELAYED<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> = "RELAYED"</span></div>
|
<div class="tsd-signature tsd-kind-icon">RELAYED<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> = "RELAYED"</span></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/MediaMode.ts#L23">MediaMode.ts:23</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/MediaMode.ts#L23">MediaMode.ts:23</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -101,7 +104,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">ROUTED<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> = "ROUTED"</span></div>
|
<div class="tsd-signature tsd-kind-icon">ROUTED<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> = "ROUTED"</span></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/MediaMode.ts#L28">MediaMode.ts:28</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/MediaMode.ts#L28">MediaMode.ts:28</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -190,6 +193,7 @@
|
||||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||||
|
<li class="tsd-kind-type-alias tsd-has-type-parameter"><span class="tsd-kind-icon">Type alias with type parameter</span></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="tsd-legend">
|
<ul class="tsd-legend">
|
||||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||||
|
|
|
@ -3,10 +3,11 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<title>OpenViduRole | OpenVidu Node Client</title>
|
<title>OpenViduRole | OpenVidu Browser</title>
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="../index.html" class="title">OpenVidu Node Client</a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-node-client/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -87,7 +90,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">MODERATOR<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> = "MODERATOR"</span></div>
|
<div class="tsd-signature tsd-kind-icon">MODERATOR<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> = "MODERATOR"</span></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/OpenViduRole.ts#L33">OpenViduRole.ts:33</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenViduRole.ts#L33">OpenViduRole.ts:33</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -102,7 +105,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">PUBLISHER<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> = "PUBLISHER"</span></div>
|
<div class="tsd-signature tsd-kind-icon">PUBLISHER<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> = "PUBLISHER"</span></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/OpenViduRole.ts#L28">OpenViduRole.ts:28</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenViduRole.ts#L28">OpenViduRole.ts:28</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -117,7 +120,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">SUBSCRIBER<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> = "SUBSCRIBER"</span></div>
|
<div class="tsd-signature tsd-kind-icon">SUBSCRIBER<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> = "SUBSCRIBER"</span></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/OpenViduRole.ts#L23">OpenViduRole.ts:23</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenViduRole.ts#L23">OpenViduRole.ts:23</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -209,6 +212,7 @@
|
||||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||||
|
<li class="tsd-kind-type-alias tsd-has-type-parameter"><span class="tsd-kind-icon">Type alias with type parameter</span></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="tsd-legend">
|
<ul class="tsd-legend">
|
||||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||||
|
|
|
@ -3,10 +3,11 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<title>Status | OpenVidu Node Client</title>
|
<title>Status | OpenVidu Browser</title>
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="../index.html" class="title">OpenVidu Node Client</a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-node-client/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -92,7 +95,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">available<span class="tsd-signature-symbol">:</span> </div>
|
<div class="tsd-signature tsd-kind-icon">available<span class="tsd-signature-symbol">:</span> </div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/Recording.ts#L119">Recording.ts:119</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/Recording.ts#L119">Recording.ts:119</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -109,7 +112,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">failed<span class="tsd-signature-symbol">:</span> </div>
|
<div class="tsd-signature tsd-kind-icon">failed<span class="tsd-signature-symbol">:</span> </div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/Recording.ts#L124">Recording.ts:124</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/Recording.ts#L124">Recording.ts:124</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -124,7 +127,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">started<span class="tsd-signature-symbol">:</span> </div>
|
<div class="tsd-signature tsd-kind-icon">started<span class="tsd-signature-symbol">:</span> </div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/Recording.ts#L107">Recording.ts:107</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/Recording.ts#L107">Recording.ts:107</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -139,7 +142,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">starting<span class="tsd-signature-symbol">:</span> </div>
|
<div class="tsd-signature tsd-kind-icon">starting<span class="tsd-signature-symbol">:</span> </div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/Recording.ts#L102">Recording.ts:102</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/Recording.ts#L102">Recording.ts:102</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -154,7 +157,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">stopped<span class="tsd-signature-symbol">:</span> </div>
|
<div class="tsd-signature tsd-kind-icon">stopped<span class="tsd-signature-symbol">:</span> </div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/Recording.ts#L112">Recording.ts:112</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/Recording.ts#L112">Recording.ts:112</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -293,6 +296,7 @@
|
||||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||||
|
<li class="tsd-kind-type-alias tsd-has-type-parameter"><span class="tsd-kind-icon">Type alias with type parameter</span></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="tsd-legend">
|
<ul class="tsd-legend">
|
||||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||||
|
|
|
@ -3,10 +3,11 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<title>RecordingLayout | OpenVidu Node Client</title>
|
<title>RecordingLayout | OpenVidu Browser</title>
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="../index.html" class="title">OpenVidu Node Client</a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-node-client/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -89,7 +92,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">BEST_<wbr>FIT<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> = "BEST_FIT"</span></div>
|
<div class="tsd-signature tsd-kind-icon">BEST_<wbr>FIT<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> = "BEST_FIT"</span></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/RecordingLayout.ts#L23">RecordingLayout.ts:23</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/RecordingLayout.ts#L23">RecordingLayout.ts:23</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -104,7 +107,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">CUSTOM<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> = "CUSTOM"</span></div>
|
<div class="tsd-signature tsd-kind-icon">CUSTOM<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> = "CUSTOM"</span></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/RecordingLayout.ts#L43">RecordingLayout.ts:43</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/RecordingLayout.ts#L43">RecordingLayout.ts:43</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -119,7 +122,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">HORIZONTAL_<wbr>PRESENTATION<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> = "VERTICAL_PRESENTATION"</span></div>
|
<div class="tsd-signature tsd-kind-icon">HORIZONTAL_<wbr>PRESENTATION<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> = "VERTICAL_PRESENTATION"</span></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/RecordingLayout.ts#L38">RecordingLayout.ts:38</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/RecordingLayout.ts#L38">RecordingLayout.ts:38</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -134,7 +137,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">PICTURE_<wbr>IN_<wbr>PICTURE<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> = "PICTURE_IN_PICTURE"</span></div>
|
<div class="tsd-signature tsd-kind-icon">PICTURE_<wbr>IN_<wbr>PICTURE<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> = "PICTURE_IN_PICTURE"</span></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/RecordingLayout.ts#L28">RecordingLayout.ts:28</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/RecordingLayout.ts#L28">RecordingLayout.ts:28</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -149,7 +152,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">VERTICAL_<wbr>PRESENTATION<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> = "VERTICAL_PRESENTATION"</span></div>
|
<div class="tsd-signature tsd-kind-icon">VERTICAL_<wbr>PRESENTATION<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> = "VERTICAL_PRESENTATION"</span></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/RecordingLayout.ts#L33">RecordingLayout.ts:33</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/RecordingLayout.ts#L33">RecordingLayout.ts:33</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -247,6 +250,7 @@
|
||||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||||
|
<li class="tsd-kind-type-alias tsd-has-type-parameter"><span class="tsd-kind-icon">Type alias with type parameter</span></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="tsd-legend">
|
<ul class="tsd-legend">
|
||||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||||
|
|
|
@ -3,10 +3,11 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<title>RecordingMode | OpenVidu Node Client</title>
|
<title>RecordingMode | OpenVidu Browser</title>
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="../index.html" class="title">OpenVidu Node Client</a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-node-client/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -86,7 +89,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">ALWAYS<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> = "ALWAYS"</span></div>
|
<div class="tsd-signature tsd-kind-icon">ALWAYS<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> = "ALWAYS"</span></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/RecordingMode.ts#L24">RecordingMode.ts:24</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/RecordingMode.ts#L24">RecordingMode.ts:24</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -102,7 +105,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">MANUAL<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> = "MANUAL"</span></div>
|
<div class="tsd-signature tsd-kind-icon">MANUAL<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> = "MANUAL"</span></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/RecordingMode.ts#L30">RecordingMode.ts:30</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/RecordingMode.ts#L30">RecordingMode.ts:30</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -192,6 +195,7 @@
|
||||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||||
|
<li class="tsd-kind-type-alias tsd-has-type-parameter"><span class="tsd-kind-icon">Type alias with type parameter</span></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="tsd-legend">
|
<ul class="tsd-legend">
|
||||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||||
|
|
|
@ -3,10 +3,11 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<title>OpenVidu Node Client</title>
|
<title>OpenVidu Browser</title>
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="assets/css/main.css">
|
<link rel="stylesheet" href="assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="index.html" class="title">OpenVidu Node Client</a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-node-client/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -54,7 +57,7 @@
|
||||||
<a href="index.html">Globals</a>
|
<a href="index.html">Globals</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<h1> OpenVidu Node Client</h1>
|
<h1> OpenVidu Browser</h1>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
@ -109,8 +112,8 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">Buffer<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
<div class="tsd-signature tsd-kind-icon">Buffer<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/Session.ts#L25">Session.ts:25</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/Session.ts#L25">Session.ts:25</a></li>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/OpenVidu.ts#L24">OpenVidu.ts:24</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu.ts#L24">OpenVidu.ts:24</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
</section>
|
</section>
|
||||||
|
@ -120,8 +123,8 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">https<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span><span class="tsd-signature-symbol"> = require('https')</span></div>
|
<div class="tsd-signature tsd-kind-icon">https<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span><span class="tsd-signature-symbol"> = require('https')</span></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/Session.ts#L28">Session.ts:28</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/Session.ts#L28">Session.ts:28</a></li>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/OpenVidu.ts#L25">OpenVidu.ts:25</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/OpenVidu.ts#L25">OpenVidu.ts:25</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
</section>
|
</section>
|
||||||
|
@ -131,7 +134,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">require<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
<div class="tsd-signature tsd-kind-icon">require<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/Session.ts#L26">Session.ts:26</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/Session.ts#L26">Session.ts:26</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
</section>
|
</section>
|
||||||
|
@ -203,6 +206,7 @@
|
||||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||||
|
<li class="tsd-kind-type-alias tsd-has-type-parameter"><span class="tsd-kind-icon">Type alias with type parameter</span></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="tsd-legend">
|
<ul class="tsd-legend">
|
||||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||||
|
|
|
@ -3,10 +3,11 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<title>RecordingProperties | OpenVidu Node Client</title>
|
<title>RecordingProperties | OpenVidu Browser</title>
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="../index.html" class="title">OpenVidu Node Client</a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-node-client/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -95,7 +98,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">custom<wbr>Layout<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
<div class="tsd-signature tsd-kind-icon">custom<wbr>Layout<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/RecordingProperties.ts#L36">RecordingProperties.ts:36</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/RecordingProperties.ts#L36">RecordingProperties.ts:36</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -111,7 +114,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
<div class="tsd-signature tsd-kind-icon">name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/RecordingProperties.ts#L25">RecordingProperties.ts:25</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/RecordingProperties.ts#L25">RecordingProperties.ts:25</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -126,7 +129,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">recording<wbr>Layout<span class="tsd-signature-symbol">:</span> <a href="../enums/recordinglayout.html" class="tsd-signature-type">RecordingLayout</a></div>
|
<div class="tsd-signature tsd-kind-icon">recording<wbr>Layout<span class="tsd-signature-symbol">:</span> <a href="../enums/recordinglayout.html" class="tsd-signature-type">RecordingLayout</a></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/RecordingProperties.ts#L30">RecordingProperties.ts:30</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/RecordingProperties.ts#L30">RecordingProperties.ts:30</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -218,6 +221,7 @@
|
||||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||||
|
<li class="tsd-kind-type-alias tsd-has-type-parameter"><span class="tsd-kind-icon">Type alias with type parameter</span></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="tsd-legend">
|
<ul class="tsd-legend">
|
||||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||||
|
|
|
@ -3,10 +3,11 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<title>SessionProperties | OpenVidu Node Client</title>
|
<title>SessionProperties | OpenVidu Browser</title>
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="../index.html" class="title">OpenVidu Node Client</a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-node-client/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -96,7 +99,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">default<wbr>Custom<wbr>Layout<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
<div class="tsd-signature tsd-kind-icon">default<wbr>Custom<wbr>Layout<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/SessionProperties.ts#L45">SessionProperties.ts:45</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/SessionProperties.ts#L45">SessionProperties.ts:45</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -112,7 +115,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">default<wbr>Recording<wbr>Layout<span class="tsd-signature-symbol">:</span> <a href="../enums/recordinglayout.html" class="tsd-signature-type">RecordingLayout</a></div>
|
<div class="tsd-signature tsd-kind-icon">default<wbr>Recording<wbr>Layout<span class="tsd-signature-symbol">:</span> <a href="../enums/recordinglayout.html" class="tsd-signature-type">RecordingLayout</a></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/SessionProperties.ts#L39">SessionProperties.ts:39</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/SessionProperties.ts#L39">SessionProperties.ts:39</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -128,7 +131,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">media<wbr>Mode<span class="tsd-signature-symbol">:</span> <a href="../enums/mediamode.html" class="tsd-signature-type">MediaMode</a></div>
|
<div class="tsd-signature tsd-kind-icon">media<wbr>Mode<span class="tsd-signature-symbol">:</span> <a href="../enums/mediamode.html" class="tsd-signature-type">MediaMode</a></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/SessionProperties.ts#L28">SessionProperties.ts:28</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/SessionProperties.ts#L28">SessionProperties.ts:28</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -144,7 +147,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">recording<wbr>Mode<span class="tsd-signature-symbol">:</span> <a href="../enums/recordingmode.html" class="tsd-signature-type">RecordingMode</a></div>
|
<div class="tsd-signature tsd-kind-icon">recording<wbr>Mode<span class="tsd-signature-symbol">:</span> <a href="../enums/recordingmode.html" class="tsd-signature-type">RecordingMode</a></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/SessionProperties.ts#L33">SessionProperties.ts:33</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/SessionProperties.ts#L33">SessionProperties.ts:33</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -239,6 +242,7 @@
|
||||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||||
|
<li class="tsd-kind-type-alias tsd-has-type-parameter"><span class="tsd-kind-icon">Type alias with type parameter</span></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="tsd-legend">
|
<ul class="tsd-legend">
|
||||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||||
|
|
|
@ -3,10 +3,11 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<title>TokenOptions | OpenVidu Node Client</title>
|
<title>TokenOptions | OpenVidu Browser</title>
|
||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="stylesheet" href="../assets/css/main.css">
|
<link rel="stylesheet" href="../assets/css/main.css">
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
@ -22,7 +23,9 @@
|
||||||
<li class="state loading">Preparing search index...</li>
|
<li class="state loading">Preparing search index...</li>
|
||||||
<li class="state failure">The search index is not available</li>
|
<li class="state failure">The search index is not available</li>
|
||||||
</ul>
|
</ul>
|
||||||
<a href="../index.html" class="title">OpenVidu Node Client</a>
|
<a style="position: absolute" href="/docs/reference-docs/openvidu-node-client/" class="title">
|
||||||
|
<img class="logo-small" style="height: 26px; margin-top: 7px" src="/img/logos/openvidu_vert_grey_bg_transp_cropped.png">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-cell" id="tsd-widgets">
|
<div class="table-cell" id="tsd-widgets">
|
||||||
<div id="tsd-filter">
|
<div id="tsd-filter">
|
||||||
|
@ -94,7 +97,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">data<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
<div class="tsd-signature tsd-kind-icon">data<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/TokenOptions.ts#L28">TokenOptions.ts:28</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/TokenOptions.ts#L28">TokenOptions.ts:28</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -114,7 +117,7 @@
|
||||||
<div class="tsd-signature tsd-kind-icon">role<span class="tsd-signature-symbol">:</span> <a href="../enums/openvidurole.html" class="tsd-signature-type">OpenViduRole</a></div>
|
<div class="tsd-signature tsd-kind-icon">role<span class="tsd-signature-symbol">:</span> <a href="../enums/openvidurole.html" class="tsd-signature-type">OpenViduRole</a></div>
|
||||||
<aside class="tsd-sources">
|
<aside class="tsd-sources">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-node-client/src/TokenOptions.ts#L33">TokenOptions.ts:33</a></li>
|
<li>Defined in <a href="https://github.com/OpenVidu/openvidu/tree/master/openvidu-browser/src/TokenOptions.ts#L33">TokenOptions.ts:33</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</aside>
|
</aside>
|
||||||
<div class="tsd-comment tsd-typography">
|
<div class="tsd-comment tsd-typography">
|
||||||
|
@ -203,6 +206,7 @@
|
||||||
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
||||||
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
||||||
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
||||||
|
<li class="tsd-kind-type-alias tsd-has-type-parameter"><span class="tsd-kind-icon">Type alias with type parameter</span></li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="tsd-legend">
|
<ul class="tsd-legend">
|
||||||
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
"typings": "lib/index.d.ts",
|
"typings": "lib/index.d.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "tsc",
|
"build": "tsc",
|
||||||
"docs": "typedoc --options ./config/typedoc.js --out ./docs ./src"
|
"docs": "grunt --gruntfile config/typedoc/custom-theme/gruntfile.js && typedoc --options ./config/typedoc/typedoc.js --out ./docs ./src && rm -rf ../../openvidu.io/api/openvidu-node-client/* && cp -R ./docs/. ../../openvidu.io/api/openvidu-node-client"
|
||||||
},
|
},
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
@ -21,6 +21,15 @@
|
||||||
"tslint": "5.9.1",
|
"tslint": "5.9.1",
|
||||||
"typedoc": "^0.11.1",
|
"typedoc": "^0.11.1",
|
||||||
"typedoc-plugin-sourcefile-url": "^1.0.3",
|
"typedoc-plugin-sourcefile-url": "^1.0.3",
|
||||||
"typescript": "2.7.2"
|
"typescript": "2.7.2",
|
||||||
|
"grunt": "^1.0.1",
|
||||||
|
"grunt-autoprefixer": "^3.0.4",
|
||||||
|
"grunt-cli": "^1.2.0",
|
||||||
|
"grunt-contrib-copy": "^1.0.0",
|
||||||
|
"grunt-contrib-sass": "^1.0.0",
|
||||||
|
"grunt-contrib-uglify": "^2.3.0",
|
||||||
|
"grunt-contrib-watch": "~1.0.0",
|
||||||
|
"grunt-string-replace": "^1.0.0",
|
||||||
|
"grunt-ts": "^5.5.1"
|
||||||
}
|
}
|
||||||
}
|
}
|