UNPKG

@nocobase/plugin-file-manager

Version:

Provides files storage services with files collection template and attachment field.

80 lines (79 loc) 2.01 kB
/** * This file is part of the NocoBase (R) project. * Copyright (c) 2020-2024 NocoBase Co., Ltd. * Authors: NocoBase Team. * * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License. * For more information, please refer to: https://www.nocobase.com/agreement. */ declare const _default: { dumpRules: string; migrationRules: string[]; name: string; shared: boolean; fields: ({ title: string; comment: string; type: string; name: string; translation: boolean; trim: boolean; unique?: undefined; defaultValue?: undefined; } | { title: string; type: string; name: string; unique: boolean; trim: boolean; comment?: undefined; translation?: undefined; defaultValue?: undefined; } | { comment: string; type: string; name: string; title?: undefined; translation?: undefined; trim?: undefined; unique?: undefined; defaultValue?: undefined; } | { comment: string; type: string; name: string; defaultValue: {}; title?: undefined; translation?: undefined; trim?: undefined; unique?: undefined; } | { comment: string; type: string; name: string; defaultValue: string; trim: boolean; title?: undefined; translation?: undefined; unique?: undefined; } | { comment: string; type: string; name: string; defaultValue: boolean; title?: undefined; translation?: undefined; trim?: undefined; unique?: undefined; } | { type: string; name: string; defaultValue: boolean; title?: undefined; comment?: undefined; translation?: undefined; trim?: undefined; unique?: undefined; })[]; }; export default _default;