@vnejs/contracts.canvas.layers.ml 0.1.3
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/dist/const.d.ts +4 -0
- package/dist/const.js +3 -0
- package/dist/events.d.ts +4 -0
- package/dist/events.js +3 -0
- package/dist/index.d.ts +20 -0
- package/dist/index.js +8 -0
- package/dist/params.d.ts +7 -0
- package/dist/params.js +4 -0
- package/package.json +34 -0
- package/src/const.ts +5 -0
- package/src/events.ts +5 -0
- package/src/index.ts +23 -0
- package/src/params.ts +8 -0
- package/tsconfig.json +9 -0
package/dist/const.d.ts
ADDED
package/dist/const.js
ADDED
package/dist/events.d.ts
ADDED
package/dist/events.js
ADDED
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import "@vnejs/shared";
|
|
2
|
+
import { CONSTANTS } from "./const.js";
|
|
3
|
+
import { SUBSCRIBE_EVENTS } from "./events.js";
|
|
4
|
+
import { PARAMS } from "./params.js";
|
|
5
|
+
export declare const PLUGIN_NAME: "LAYER_ML";
|
|
6
|
+
export type PluginName = typeof PLUGIN_NAME;
|
|
7
|
+
export { CONSTANTS };
|
|
8
|
+
export type { Constants } from "./const.js";
|
|
9
|
+
export { SUBSCRIBE_EVENTS };
|
|
10
|
+
export type { SubscribeEvents } from "./events.js";
|
|
11
|
+
export { PARAMS };
|
|
12
|
+
export type { Params } from "./params.js";
|
|
13
|
+
declare module "@vnejs/shared" {
|
|
14
|
+
interface VnePluginEventsMap extends Record<typeof PLUGIN_NAME, typeof SUBSCRIBE_EVENTS> {
|
|
15
|
+
}
|
|
16
|
+
interface VnePluginConstantsMap extends Record<typeof PLUGIN_NAME, typeof CONSTANTS> {
|
|
17
|
+
}
|
|
18
|
+
interface VnePluginParamsMap extends Record<typeof PLUGIN_NAME, typeof PARAMS> {
|
|
19
|
+
}
|
|
20
|
+
}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import "@vnejs/shared";
|
|
2
|
+
import { CONSTANTS } from "./const.js";
|
|
3
|
+
import { SUBSCRIBE_EVENTS } from "./events.js";
|
|
4
|
+
import { PARAMS } from "./params.js";
|
|
5
|
+
export const PLUGIN_NAME = "LAYER_ML";
|
|
6
|
+
export { CONSTANTS };
|
|
7
|
+
export { SUBSCRIBE_EVENTS };
|
|
8
|
+
export { PARAMS };
|
package/dist/params.d.ts
ADDED
package/dist/params.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@vnejs/contracts.canvas.layers.ml",
|
|
3
|
+
"version": "0.1.3",
|
|
4
|
+
"description": "Contracts for @vnejs/plugins.canvas.layers.ml",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"import": "./dist/index.js",
|
|
11
|
+
"require": "./dist/index.js",
|
|
12
|
+
"default": "./dist/index.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist",
|
|
17
|
+
"src",
|
|
18
|
+
"tsconfig.json"
|
|
19
|
+
],
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "npx @vnejs/monorepo package",
|
|
22
|
+
"publish:major": "npx @vnejs/monorepo publish major --access public",
|
|
23
|
+
"publish:minor": "npx @vnejs/monorepo publish minor --access public",
|
|
24
|
+
"publish:patch": "npx @vnejs/monorepo publish patch --access public"
|
|
25
|
+
},
|
|
26
|
+
"author": "",
|
|
27
|
+
"license": "ISC",
|
|
28
|
+
"peerDependencies": {
|
|
29
|
+
"@vnejs/shared": "~0.1.0"
|
|
30
|
+
},
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"@vnejs/configs.ts-common": "~0.1.0"
|
|
33
|
+
}
|
|
34
|
+
}
|
package/src/const.ts
ADDED
package/src/events.ts
ADDED
package/src/index.ts
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import "@vnejs/shared";
|
|
2
|
+
|
|
3
|
+
import { CONSTANTS } from "./const.js";
|
|
4
|
+
import { SUBSCRIBE_EVENTS } from "./events.js";
|
|
5
|
+
import { PARAMS } from "./params.js";
|
|
6
|
+
|
|
7
|
+
export const PLUGIN_NAME = "LAYER_ML" as const;
|
|
8
|
+
export type PluginName = typeof PLUGIN_NAME;
|
|
9
|
+
|
|
10
|
+
export { CONSTANTS };
|
|
11
|
+
export type { Constants } from "./const.js";
|
|
12
|
+
export { SUBSCRIBE_EVENTS };
|
|
13
|
+
export type { SubscribeEvents } from "./events.js";
|
|
14
|
+
export { PARAMS };
|
|
15
|
+
export type { Params } from "./params.js";
|
|
16
|
+
|
|
17
|
+
declare module "@vnejs/shared" {
|
|
18
|
+
interface VnePluginEventsMap extends Record<typeof PLUGIN_NAME, typeof SUBSCRIBE_EVENTS> {}
|
|
19
|
+
|
|
20
|
+
interface VnePluginConstantsMap extends Record<typeof PLUGIN_NAME, typeof CONSTANTS> {}
|
|
21
|
+
|
|
22
|
+
interface VnePluginParamsMap extends Record<typeof PLUGIN_NAME, typeof PARAMS> {}
|
|
23
|
+
}
|
package/src/params.ts
ADDED