@vyr/declare 0.0.33 → 0.0.34

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/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@vyr/declare",
3
- "version": "0.0.33",
3
+ "version": "0.0.34",
4
4
  "description": "",
5
5
  "main": "./src/index.ts",
6
6
  "author": "",
7
7
  "license": "MIT",
8
8
  "dependencies": {
9
- "@vyr/locale": "0.0.33"
9
+ "@vyr/locale": "0.0.34"
10
10
  },
11
11
  "devDependencies": {},
12
12
  "files": [
package/src/Config.ts CHANGED
@@ -1,19 +1,4 @@
1
- interface PortConfig {
2
- main: number
3
- }
4
-
5
- interface RemoteLib {
6
- name: string
7
- entry: string
8
- }
9
-
10
- interface ClientConfig {
11
- readonly languageProviders: any[]
12
- readonly language: string
13
- readonly port: PortConfig
14
- }
15
-
16
- export {
17
- PortConfig,
18
- ClientConfig,
1
+ export interface ClientConfig {
2
+ readonly languageProviders: any[]
3
+ readonly language: string
19
4
  }
package/src/Draggable.ts CHANGED
@@ -1,10 +1,3 @@
1
- type DraggableEndType = 'insert' | 'insertBefore' | 'insertAfter'
2
- interface AdditionalData { [k: string]: any }
3
- interface DraggableData<T extends AdditionalData = AdditionalData> { id: string, data: T }
4
-
5
-
6
- export {
7
- DraggableEndType,
8
- AdditionalData,
9
- DraggableData,
10
- }
1
+ export type DraggableEndType = 'insert' | 'insertBefore' | 'insertAfter'
2
+ export interface AdditionalData { [k: string]: any }
3
+ export interface DraggableData<T extends AdditionalData = AdditionalData> { id: string, data: T }
package/src/Extension.ts CHANGED
@@ -1,12 +1,8 @@
1
- interface Extension {
2
- readonly name: string
3
- /**扩展的路径 */
4
- readonly path: string
5
- readonly link: boolean
6
- readonly type: 'node' | 'browser' | 'universal'
7
- readonly order: number
8
- }
9
-
10
- export {
11
- Extension
1
+ export interface Extension {
2
+ readonly name: string
3
+ /**扩展的路径 */
4
+ readonly path: string
5
+ readonly link: boolean
6
+ readonly type: 'node' | 'browser' | 'universal'
7
+ readonly order: number
12
8
  }