Skip to content

Commit

Permalink
fix: remove typeEvaluator typesVersions export (#207)
Browse files Browse the repository at this point in the history
  • Loading branch information
stipsan committed Apr 2, 2024
1 parent 4a18558 commit 80bb8cb
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 4 deletions.
3 changes: 0 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,6 @@
"*": {
"1": [
"./dist/1.d.ts"
],
"typeEvaluator": [
"./dist/typeEvaluator/index.d.ts"
]
}
},
Expand Down
21 changes: 20 additions & 1 deletion src/typeEvaluator/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
export type {GroqFunction, GroqFunctionArg, GroqPipeFunction} from '../evaluator/functions'
export type {Scope} from '../evaluator/scope'
export type {Context, DereferenceFunction, Document, Executor} from '../evaluator/types'
export * from '../nodeTypes'
export type {
AnyStaticValue,
ArrayValue,
BooleanValue,
DateTimeValue,
GroqType,
NullValue,
NumberValue,
ObjectValue,
PathValue,
StaticValue,
StreamValue,
StringValue,
Value,
} from '../values'
export {DateTime, Path} from '../values'
export {typeEvaluate} from './typeEvaluate'
// @internal
export {createReferenceTypeNode} from './typeHelpers'
export type {
ArrayTypeNode,
Expand Down

0 comments on commit 80bb8cb

Please sign in to comment.