@univerjs/core 0.1.0-beta.0 → 0.1.0-beta.1

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.
@@ -13,7 +13,6 @@
13
13
  * See the License for the specific language governing permissions and
14
14
  * limitations under the License.
15
15
  */
16
- export * from './action-names';
17
16
  export * from './const';
18
17
  export * from './extension-names';
19
18
  export * from './theme-color-map';
@@ -22,12 +22,21 @@ import type { IWorksheetData } from './i-worksheet-data';
22
22
  * Properties of a workbook's configuration
23
23
  */
24
24
  export interface IWorkbookData extends IExtraModelData {
25
- /** unit id */
25
+ /**
26
+ * unit id
27
+ */
26
28
  id: string;
27
- /** Revision of this document. Would be used in collaborated editing. Starts from one. */
29
+ /**
30
+ * Revision of this spreadsheet. Would be used in collaborated editing. Starts from one.
31
+ */
28
32
  rev?: number;
33
+ /**
34
+ * Name of the spreadsheet.
35
+ */
29
36
  name: string;
30
- /** Version of Univer model definition. */
37
+ /**
38
+ * Version of Univer model definition.
39
+ */
31
40
  appVersion: string;
32
41
  locale: LocaleType;
33
42
  /** Style reference. */