cooptypes 0.0.5 → 0.2.0
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 +18 -20
- package/dist/index.cjs +742 -4
- package/dist/index.d.cts +2062 -3
- package/dist/index.d.mts +2062 -3
- package/dist/index.d.ts +2062 -3
- package/dist/index.mjs +737 -3
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# cooptypes
|
|
2
2
|
|
|
3
3
|
[![npm version][npm-version-src]][npm-version-href]
|
|
4
4
|
[![npm downloads][npm-downloads-src]][npm-downloads-href]
|
|
@@ -6,32 +6,30 @@
|
|
|
6
6
|
[![JSDocs][jsdocs-src]][jsdocs-href]
|
|
7
7
|
[![License][license-src]][license-href]
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
## Обозначения
|
|
10
|
+
_username - имя аккаунта пользователя до 12 символов.
|
|
10
11
|
|
|
11
|
-
|
|
12
|
-
> Replace `pkg-placeholder`, `_description_` and `antfu` globally to use this template.
|
|
12
|
+
_coopname - имя аккаунта кооператива до 12 символов.
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
_chairman - имя аккаунта председателя кооператива до 12 символов.
|
|
15
15
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
</a>
|
|
20
|
-
</p>
|
|
16
|
+
_admin - имя аккаунта администратора кооператива до 12 символов.
|
|
17
|
+
|
|
18
|
+
_contract - собственное имя аккаунта контракта до 12 символов, в котором вызывается действие.
|
|
21
19
|
|
|
22
20
|
## License
|
|
23
21
|
|
|
24
|
-
[MIT](./LICENSE) License ©
|
|
22
|
+
[MIT](./LICENSE) License © 2024-PRESENT [Alex Ant](https://github.com/dacom-dark-sun)
|
|
25
23
|
|
|
26
24
|
<!-- Badges -->
|
|
27
25
|
|
|
28
|
-
[npm-version-src]: https://img.shields.io/npm/v/
|
|
29
|
-
[npm-version-href]: https://npmjs.com/package/
|
|
30
|
-
[npm-downloads-src]: https://img.shields.io/npm/dm/
|
|
31
|
-
[npm-downloads-href]: https://npmjs.com/package/
|
|
32
|
-
[bundle-src]: https://img.shields.io/bundlephobia/minzip/
|
|
33
|
-
[bundle-href]: https://bundlephobia.com/result?p=
|
|
34
|
-
[license-src]: https://img.shields.io/github/license/
|
|
35
|
-
[license-href]: https://github.com/
|
|
26
|
+
[npm-version-src]: https://img.shields.io/npm/v/cooptypes?style=flat&colorA=080f12&colorB=1fa669
|
|
27
|
+
[npm-version-href]: https://npmjs.com/package/cooptypes
|
|
28
|
+
[npm-downloads-src]: https://img.shields.io/npm/dm/cooptypes?style=flat&colorA=080f12&colorB=1fa669
|
|
29
|
+
[npm-downloads-href]: https://npmjs.com/package/cooptypes
|
|
30
|
+
[bundle-src]: https://img.shields.io/bundlephobia/minzip/cooptypes?style=flat&colorA=080f12&colorB=1fa669&label=minzip
|
|
31
|
+
[bundle-href]: https://bundlephobia.com/result?p=cooptypes
|
|
32
|
+
[license-src]: https://img.shields.io/github/license/intellect-run/cooptypes.svg?style=flat&colorA=080f12&colorB=1fa669
|
|
33
|
+
[license-href]: https://github.com/intellect-run/cooptypes/blob/main/LICENSE
|
|
36
34
|
[jsdocs-src]: https://img.shields.io/badge/jsdocs-reference-080f12?style=flat&colorA=080f12&colorB=1fa669
|
|
37
|
-
[jsdocs-href]: https://www.jsdocs.io/package/
|
|
35
|
+
[jsdocs-href]: https://www.jsdocs.io/package/cooptypes
|