@sinco/react 1.0.14-rc.26 → 1.0.14-rc.28

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sinco/react",
3
- "version": "1.0.14-rc.26",
3
+ "version": "1.0.14-rc.28",
4
4
  "description": "package for the configuration of mui react sinco",
5
5
  "private": false,
6
6
  "license": "MIT",
@@ -1,12 +1,10 @@
1
1
  import React from "react";
2
- interface Option {
3
- }
4
2
  interface ToastNotificationProperties {
5
3
  type?: string;
6
4
  subtitle?: string;
7
5
  time?: number | any;
8
6
  title?: string;
9
- dataOpt?: Option[];
7
+ dataOpt?: Array<object>;
10
8
  actions?: React.ReactNode;
11
9
  seeMore?: boolean;
12
10
  }