capacitor-cos-plugin
Version:
腾讯cos capacitor 文件上传插件
27 lines • 1.11 kB
JavaScript
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
import { WebPlugin } from '@capacitor/core';
export class CosPluginWeb extends WebPlugin {
constructor() {
super({
name: 'CosPlugin',
platforms: ['web']
});
}
upload(options) {
return __awaiter(this, void 0, void 0, function* () {
return options;
});
}
}
const CosPlugin = new CosPluginWeb();
export { CosPlugin };
import { registerWebPlugin } from '@capacitor/core';
registerWebPlugin(CosPlugin);
//# sourceMappingURL=web.js.map