We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49611d1 commit f3deec3Copy full SHA for f3deec3
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "promptl-ai",
3
- "version": "0.6.6",
+ "version": "0.7.0",
4
"author": "Latitude Data",
5
"license": "MIT",
6
"description": "Compiler for PromptL, the prompt language",
src/index.ts
@@ -3,6 +3,8 @@ export * from './compiler'
export * from './parser'
export * from './providers'
-export { type Fragment } from './parser/interfaces'
+import * as parserInterfaces from './parser/interfaces'
7
+type Fragment = parserInterfaces.Fragment
8
+export type { Fragment, parserInterfaces as IParser }
9
10
export { default as CompileError } from './error/error'
0 commit comments