@edgebasejs/types 0.1.7 → 0.1.9

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.
Files changed (2) hide show
  1. package/README.md +15 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # @edgebasejs/types
2
+
3
+ Shared types for EdgeBase clients and servers.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ pnpm add @edgebasejs/types
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```ts
14
+ import type { User, DatabaseSchema } from '@edgebasejs/types';
15
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edgebasejs/types",
3
- "version": "0.1.7",
3
+ "version": "0.1.9",
4
4
  "description": "Shared type definitions for EdgeBase",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",