大小写问题
This commit is contained in:
parent
69428df7f6
commit
740c2620f4
|
|
@ -1,4 +1,4 @@
|
|||
import { Action, CTYunZone } from '../../types/CTGun';
|
||||
import { Action, CTYunZone } from '../../types/CTYun';
|
||||
export declare class CTYunInstance {
|
||||
private accessKey;
|
||||
private secretKey;
|
||||
|
|
|
|||
|
|
@ -0,0 +1,6 @@
|
|||
/**
|
||||
* 此处记录ctyun操作权限名称,更多操作权限参考下方链接
|
||||
* https://www.ctyun.cn/document/10306929/10136179
|
||||
*/
|
||||
export type Action = '*' | 'PutObject' | 'GetObject' | 'DeleteObject' | 'ListBucket';
|
||||
export type CTYunZone = 'hazz' | 'lnsy' | 'sccd' | 'xjwlmq' | 'gslz' | 'sdqd' | 'gzgy' | 'hbwh' | 'xzls' | 'ahwh' | 'gdsz' | 'jssz' | 'sh2';
|
||||
|
|
@ -0,0 +1 @@
|
|||
export {};
|
||||
|
|
@ -1,3 +1,3 @@
|
|||
export * from './Wechat';
|
||||
export * from './Qiniu';
|
||||
export * from './CTGun';
|
||||
export * from './CTYun';
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
export * from './Wechat';
|
||||
export * from './Qiniu';
|
||||
export * from './CTGun';
|
||||
export * from './CTYun';
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Action, CTYunZone } from '../../types/CTGun';
|
||||
import { Action, CTYunZone } from '../../types/CTYun';
|
||||
export declare class CTYunInstance {
|
||||
private accessKey;
|
||||
private secretKey;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
export * from './Wechat';
|
||||
export * from './Qiniu';
|
||||
export * from './CTGun';
|
||||
export * from './CTYun';
|
||||
|
|
|
|||
|
|
@ -3,4 +3,4 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|||
const tslib_1 = require("tslib");
|
||||
tslib_1.__exportStar(require("./Wechat"), exports);
|
||||
tslib_1.__exportStar(require("./Qiniu"), exports);
|
||||
tslib_1.__exportStar(require("./CTGun"), exports);
|
||||
tslib_1.__exportStar(require("./CTYun"), exports);
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
// import AWS from 'aws-sdk';
|
||||
import crypto from 'crypto';
|
||||
import { Action, CTYunZone } from '../../types/CTGun';
|
||||
import { Action, CTYunZone } from '../../types/CTYun';
|
||||
|
||||
const CTYun_ENDPOINT_LIST = {
|
||||
hazz: {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
export * from './Wechat';
|
||||
export * from './Qiniu';
|
||||
export * from './CTGun';
|
||||
export * from './CTYun';
|
||||
Loading…
Reference in New Issue