@pgsql/transform 17.1.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/13/enums.d.ts +69 -0
- package/13/enums.js +2 -0
- package/13/types.d.ts +2328 -0
- package/13/types.js +2 -0
- package/17/enums.d.ts +76 -0
- package/17/enums.js +2 -0
- package/17/types.d.ts +2488 -0
- package/17/types.js +2 -0
- package/LICENSE +21 -0
- package/README.md +21 -0
- package/esm/13/enums.js +1 -0
- package/esm/13/types.js +1 -0
- package/esm/17/enums.js +1 -0
- package/esm/17/types.js +1 -0
- package/esm/index.js +1309 -0
- package/index.d.ts +7 -0
- package/index.js +1346 -0
- package/package.json +38 -0
package/index.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Node as PG13Node } from './13/types';
|
|
2
|
+
import { Node as PG17Node } from './17/types';
|
|
3
|
+
export declare function transformPG13ToPG17(node: PG13Node): PG17Node;
|
|
4
|
+
export { Node as PG13Node } from './13/types';
|
|
5
|
+
export { Node as PG17Node } from './17/types';
|
|
6
|
+
export * as PG13Types from './13/types';
|
|
7
|
+
export * as PG17Types from './17/types';
|