jellyfin-web/dashboard-ui/bower_components/emby-webcomponents/filesystem.js

12 lines
243 B
JavaScript
Raw Normal View History

2016-12-26 13:42:41 -07:00
define([], function () {
'use strict';
return {
fileExists: function (path) {
return Promise.reject();
},
directoryExists: function (path) {
return Promise.reject();
}
};
});