piclist 1.3.3 → 1.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +40 -0
- package/bin/picgo-server +66 -22
- package/dist/i18n/zh-CN.d.ts +6 -0
- package/dist/index.cjs.js +2 -2
- package/dist/index.esm.js +2 -2
- package/dist/plugins/uploader/piclist.d.ts +2 -0
- package/dist/types/index.d.ts +8 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -385,6 +385,14 @@ export interface ISftpPlistConfig {
|
|
|
385
385
|
fileMode?: string;
|
|
386
386
|
dirMode?: string;
|
|
387
387
|
}
|
|
388
|
+
/** PicList 图床配置项 */
|
|
389
|
+
export interface IPicListConfig {
|
|
390
|
+
host: string;
|
|
391
|
+
port?: number;
|
|
392
|
+
picbed?: string;
|
|
393
|
+
configName?: string;
|
|
394
|
+
serverKey?: string;
|
|
395
|
+
}
|
|
388
396
|
/** PicGo 配置文件类型定义 */
|
|
389
397
|
export interface IConfig {
|
|
390
398
|
picBed: {
|