23 lines
671 B
JavaScript
23 lines
671 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const tslib_1 = require("tslib");
|
|
const unknown_1 = tslib_1.__importDefault(require("./unknown"));
|
|
class UnknownBackend extends unknown_1.default {
|
|
getConfigAndInstance(application) {
|
|
return {};
|
|
}
|
|
async composeFileUrlBackend(options) {
|
|
const { application, extraFile, context, style } = options;
|
|
return extraFile.extra1;
|
|
}
|
|
async formUploadMeta(application, extraFile) {
|
|
}
|
|
async checkWhetherSuccess(application, extraFile) {
|
|
return true;
|
|
}
|
|
async removeFile(application, extraFile) {
|
|
}
|
|
}
|
|
exports.default = UnknownBackend;
|
|
;
|