next-flow-interface 0.26.21 → 0.26.22
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/README.md +23 -1
- package/index.d.ts +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1 +1,23 @@
|
|
|
1
|
-
|
|
1
|
+
<h1 align="center" style="margin-top: 2rem">Next Flow Plugin Development</h1>
|
|
2
|
+
|
|
3
|
+
<p align="center">
|
|
4
|
+
<span>Interface Data Definition Document for Next Flow Plugin Development.</span>
|
|
5
|
+
</p>
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
# Using npm
|
|
11
|
+
npm install next-flow-interface --save-dev
|
|
12
|
+
|
|
13
|
+
# Using yarn
|
|
14
|
+
yarn add next-flow-interface --dev
|
|
15
|
+
|
|
16
|
+
# Using pnpm
|
|
17
|
+
pnpm add next-flow-interface --save-dev
|
|
18
|
+
|
|
19
|
+
# Using bun
|
|
20
|
+
bun add next-flow-interface --dev
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
Document pending completion ...
|
package/index.d.ts
CHANGED