Files
jellyfin-web/dashboard-ui/bower_components/emby-webcomponents/filesystem.js
T
Luke Pulverenti 7fda6e4d03 update components
2016-12-26 15:42:41 -05:00

12 lines
243 B
JavaScript

define([], function () {
'use strict';
return {
fileExists: function (path) {
return Promise.reject();
},
directoryExists: function (path) {
return Promise.reject();
}
};
});