@tslite/core 0.8.1 → 0.8.2
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/dist/builders.d.cts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { cq as arrayExpression, cr as arrayPattern, cs as arrowFunctionExpression, ct as assignmentExpression, cu as assignmentPattern, cv as assignmentProperty, cw as awaitExpression, cx as binaryExpression, cy as blockStatement, cz as breakStatement, cA as callExpression, cB as catchClause, cC as chainExpression, cD as conditionalExpression, cE as continueStatement, cF as doWhileStatement, cG as emptyStatement, cH as exportDefaultDeclaration, cI as exportNamedDeclaration, cJ as exportSpecifier, cl as expr, cK as expressionStatement, cL as forInStatement, cM as forOfStatement, cN as forStatement, cm as fromExprMarker, cO as functionDeclaration, cP as functionExpression, cQ as identifier, cR as ifStatement, cS as importDeclaration, cT as importDefaultSpecifier, cU as importNamespaceSpecifier, cV as importSpecifier, cn as json, co as jsonExpression, cW as jsxAttribute, cX as jsxClosingElement, cY as jsxClosingFragment, cZ as jsxElement, c_ as jsxEmptyExpression, c$ as jsxExpressionContainer, d0 as jsxFragment, d1 as jsxIdentifier, d2 as jsxMemberExpression, d3 as jsxNamespacedName, d4 as jsxOpeningElement, d5 as jsxOpeningFragment, d6 as jsxSpreadAttribute, d7 as jsxSpreadChild, d8 as jsxText, d9 as literal, da as logicalExpression, db as memberExpression, dc as objectExpression, dd as objectPattern, de as placeholder, df as program, dg as property, dh as restElement, di as returnStatement, dj as spreadElement, dk as switchCase, dl as switchStatement, dm as templateElement, dn as templateLiteral, dp as throwStatement, dq as tryStatement, dr as unaryExpression, ds as updateExpression, dt as variableDeclaration, du as variableDeclarator, dv as whileStatement } from './index-BNiyDL0x.cjs';
|
package/dist/builders.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { cq as arrayExpression, cr as arrayPattern, cs as arrowFunctionExpression, ct as assignmentExpression, cu as assignmentPattern, cv as assignmentProperty, cw as awaitExpression, cx as binaryExpression, cy as blockStatement, cz as breakStatement, cA as callExpression, cB as catchClause, cC as chainExpression, cD as conditionalExpression, cE as continueStatement, cF as doWhileStatement, cG as emptyStatement, cH as exportDefaultDeclaration, cI as exportNamedDeclaration, cJ as exportSpecifier, cl as expr, cK as expressionStatement, cL as forInStatement, cM as forOfStatement, cN as forStatement, cm as fromExprMarker, cO as functionDeclaration, cP as functionExpression, cQ as identifier, cR as ifStatement, cS as importDeclaration, cT as importDefaultSpecifier, cU as importNamespaceSpecifier, cV as importSpecifier, cn as json, co as jsonExpression, cW as jsxAttribute, cX as jsxClosingElement, cY as jsxClosingFragment, cZ as jsxElement, c_ as jsxEmptyExpression, c$ as jsxExpressionContainer, d0 as jsxFragment, d1 as jsxIdentifier, d2 as jsxMemberExpression, d3 as jsxNamespacedName, d4 as jsxOpeningElement, d5 as jsxOpeningFragment, d6 as jsxSpreadAttribute, d7 as jsxSpreadChild, d8 as jsxText, d9 as literal, da as logicalExpression, db as memberExpression, dc as objectExpression, dd as objectPattern, de as placeholder, df as program, dg as property, dh as restElement, di as returnStatement, dj as spreadElement, dk as switchCase, dl as switchStatement, dm as templateElement, dn as templateLiteral, dp as throwStatement, dq as tryStatement, dr as unaryExpression, ds as updateExpression, dt as variableDeclaration, du as variableDeclarator, dv as whileStatement } from './index-BNiyDL0x.js';
|
|
@@ -562,7 +562,7 @@ interface ImportNamespaceSpecifier extends BaseModuleSpecifier {
|
|
|
562
562
|
type: "ImportNamespaceSpecifier";
|
|
563
563
|
}
|
|
564
564
|
/** Qualquer nó de tipo sintático. */
|
|
565
|
-
type TSType = TSKeywordType | TSLiteralType | TSTypeReference | TSArrayType | TSIndexedAccessType | TSUnionType | TSIntersectionType | TSFunctionType | TSTypeLiteral | TSTupleType | TSTypeOperator | TSInferType | TSConditionalType | TSMappedType | TSTypeQuery;
|
|
565
|
+
type TSType = TSKeywordType | TSLiteralType | TSTypeReference | TSArrayType | TSIndexedAccessType | TSUnionType | TSIntersectionType | TSFunctionType | TSTypeLiteral | TSTupleType | TSTypeOperator | TSInferType | TSConditionalType | TSMappedType | TSTypeQuery | TSTypePredicate;
|
|
566
566
|
/** `string`/`number`/`boolean`/`any`/`unknown`/`undefined`/`void`/`null`/`never`. */
|
|
567
567
|
interface TSKeywordType extends BaseNode {
|
|
568
568
|
type: "TSKeywordType";
|
|
@@ -616,6 +616,13 @@ interface TSFunctionType extends BaseNode {
|
|
|
616
616
|
returnType: TSType;
|
|
617
617
|
typeParams?: string[];
|
|
618
618
|
}
|
|
619
|
+
/** `x is S` — o type predicate como tipo de RETORNO (`(v: unknown) => v is string`).
|
|
620
|
+
* No `Schema` vira `fn.guard` (o retorno é `boolean`); só o emissor de fonte o lê. */
|
|
621
|
+
interface TSTypePredicate extends BaseNode {
|
|
622
|
+
type: "TSTypePredicate";
|
|
623
|
+
parameterName: string;
|
|
624
|
+
typeAnnotation: TSType;
|
|
625
|
+
}
|
|
619
626
|
/** `{ k: T; k2?: U }` (+ index/call signatures). */
|
|
620
627
|
interface TSTypeLiteral extends BaseNode {
|
|
621
628
|
type: "TSTypeLiteral";
|
|
@@ -936,6 +943,7 @@ type types_TSTypeLiteral = TSTypeLiteral;
|
|
|
936
943
|
type types_TSTypeMember = TSTypeMember;
|
|
937
944
|
type types_TSTypeOperator = TSTypeOperator;
|
|
938
945
|
type types_TSTypeParameter = TSTypeParameter;
|
|
946
|
+
type types_TSTypePredicate = TSTypePredicate;
|
|
939
947
|
type types_TSTypeQuery = TSTypeQuery;
|
|
940
948
|
type types_TSTypeReference = TSTypeReference;
|
|
941
949
|
type types_TSUnionType = TSUnionType;
|
|
@@ -953,7 +961,7 @@ type types_VariableDeclaration = VariableDeclaration;
|
|
|
953
961
|
type types_VariableDeclarator = VariableDeclarator;
|
|
954
962
|
type types_WhileStatement = WhileStatement;
|
|
955
963
|
declare namespace types {
|
|
956
|
-
export type { types_ArrayExpression as ArrayExpression, types_ArrayPattern as ArrayPattern, types_ArrowFunctionExpression as ArrowFunctionExpression, types_AssignmentExpression as AssignmentExpression, types_AssignmentOperator as AssignmentOperator, types_AssignmentPattern as AssignmentPattern, types_AssignmentProperty as AssignmentProperty, types_AwaitExpression as AwaitExpression, types_BaseCallExpression as BaseCallExpression, types_BaseDeclaration as BaseDeclaration, types_BaseExpression as BaseExpression, types_BaseForXStatement as BaseForXStatement, types_BaseFunction as BaseFunction, types_BaseModuleDeclaration as BaseModuleDeclaration, types_BaseModuleSpecifier as BaseModuleSpecifier, types_BaseNode as BaseNode, types_BaseNodeWithoutComments as BaseNodeWithoutComments, types_BasePattern as BasePattern, types_BaseStatement as BaseStatement, types_BigIntLiteral as BigIntLiteral, types_BinaryExpression as BinaryExpression, types_BinaryOperator as BinaryOperator, types_BlockStatement as BlockStatement, types_BreakStatement as BreakStatement, types_CallExpression as CallExpression, types_CatchClause as CatchClause, types_ChainElement as ChainElement, types_ChainExpression as ChainExpression, types_Comment as Comment, types_ConditionalExpression as ConditionalExpression, types_ContinueStatement as ContinueStatement, types_DebuggerStatement as DebuggerStatement, types_Declaration as Declaration, types_Directive as Directive, types_DoWhileStatement as DoWhileStatement, types_EmptyStatement as EmptyStatement, types_ExportDefaultDeclaration as ExportDefaultDeclaration, types_ExportNamedDeclaration as ExportNamedDeclaration, types_ExportSpecifier as ExportSpecifier, types_Expression as Expression, types_ExpressionStatement as ExpressionStatement, types_ForInStatement as ForInStatement, types_ForOfStatement as ForOfStatement, types_ForStatement as ForStatement, types_Function as Function, types_FunctionDeclaration as FunctionDeclaration, types_FunctionExpression as FunctionExpression, types_Identifier as Identifier, types_IfStatement as IfStatement, types_ImportDeclaration as ImportDeclaration, types_ImportDefaultSpecifier as ImportDefaultSpecifier, types_ImportExpression as ImportExpression, types_ImportNamespaceSpecifier as ImportNamespaceSpecifier, types_ImportSpecifier as ImportSpecifier, types_JSXAttribute as JSXAttribute, types_JSXChild as JSXChild, types_JSXClosingElement as JSXClosingElement, types_JSXClosingFragment as JSXClosingFragment, types_JSXElement as JSXElement, types_JSXEmptyExpression as JSXEmptyExpression, types_JSXExpressionContainer as JSXExpressionContainer, types_JSXFragment as JSXFragment, types_JSXIdentifier as JSXIdentifier, types_JSXMemberExpression as JSXMemberExpression, types_JSXNamespacedName as JSXNamespacedName, types_JSXOpeningElement as JSXOpeningElement, types_JSXOpeningFragment as JSXOpeningFragment, types_JSXSpreadAttribute as JSXSpreadAttribute, types_JSXSpreadChild as JSXSpreadChild, types_JSXTagName as JSXTagName, types_JSXText as JSXText, types_JsonExpression as JsonExpression, types_LabeledStatement as LabeledStatement, types_Literal as Literal, types_LogicalExpression as LogicalExpression, types_LogicalOperator as LogicalOperator, types_MaybeNamedFunctionDeclaration as MaybeNamedFunctionDeclaration, types_MemberExpression as MemberExpression, types_MetaProperty as MetaProperty, types_ModuleDeclaration as ModuleDeclaration, types_ModuleSpecifier as ModuleSpecifier, types_Node as Node, types_NodeMap as NodeMap, types_ObjectExpression as ObjectExpression, types_ObjectPattern as ObjectPattern, types_Pattern as Pattern, types_Placeholder as Placeholder, types_Position as Position, types_Program as Program, types_Property as Property, types_RegExpLiteral as RegExpLiteral, types_RestElement as RestElement, types_ReturnStatement as ReturnStatement, types_SequenceExpression as SequenceExpression, types_SimpleArrayExpression as SimpleArrayExpression, types_SimpleArrayPattern as SimpleArrayPattern, types_SimpleArrowFunctionExpression as SimpleArrowFunctionExpression, types_SimpleAssignmentExpression as SimpleAssignmentExpression, types_SimpleAssignmentPattern as SimpleAssignmentPattern, types_SimpleAssignmentProperty as SimpleAssignmentProperty, types_SimpleAwaitExpression as SimpleAwaitExpression, types_SimpleBaseCallExpression as SimpleBaseCallExpression, types_SimpleBaseDeclaration as SimpleBaseDeclaration, types_SimpleBaseExpression as SimpleBaseExpression, types_SimpleBaseForXStatement as SimpleBaseForXStatement, types_SimpleBaseFunction as SimpleBaseFunction, types_SimpleBaseNode as SimpleBaseNode, types_SimpleBaseNodeWithoutComments as SimpleBaseNodeWithoutComments, types_SimpleBasePattern as SimpleBasePattern, types_SimpleBaseStatement as SimpleBaseStatement, types_SimpleBigIntLiteral as SimpleBigIntLiteral, types_SimpleBinaryExpression as SimpleBinaryExpression, types_SimpleBlockStatement as SimpleBlockStatement, types_SimpleBreakStatement as SimpleBreakStatement, types_SimpleCallExpression as SimpleCallExpression, types_SimpleCatchClause as SimpleCatchClause, types_SimpleChainExpression as SimpleChainExpression, types_SimpleComment as SimpleComment, types_SimpleConditionalExpression as SimpleConditionalExpression, types_SimpleContinueStatement as SimpleContinueStatement, types_SimpleDoWhileStatement as SimpleDoWhileStatement, types_SimpleEmptyStatement as SimpleEmptyStatement, types_SimpleExpressionStatement as SimpleExpressionStatement, types_SimpleForInStatement as SimpleForInStatement, types_SimpleForOfStatement as SimpleForOfStatement, types_SimpleForStatement as SimpleForStatement, types_SimpleFunctionDeclaration as SimpleFunctionDeclaration, types_SimpleFunctionExpression as SimpleFunctionExpression, types_SimpleIdentifier as SimpleIdentifier, types_SimpleIfStatement as SimpleIfStatement, types_SimpleJsonExpression as SimpleJsonExpression, types_SimpleLabeledStatement as SimpleLabeledStatement, types_SimpleLiteral as SimpleLiteral, types_SimpleLogicalExpression as SimpleLogicalExpression, types_SimpleMemberExpression as SimpleMemberExpression, types_SimpleNode as SimpleNode, types_SimpleObjectExpression as SimpleObjectExpression, types_SimpleObjectPattern as SimpleObjectPattern, types_SimplePosition as SimplePosition, types_SimpleProgram as SimpleProgram, types_SimpleProperty as SimpleProperty, types_SimpleRegExpLiteral as SimpleRegExpLiteral, types_SimpleRestElement as SimpleRestElement, types_SimpleReturnStatement as SimpleReturnStatement, types_SimpleSequenceExpression as SimpleSequenceExpression, types_SimpleSimpleCallExpression as SimpleSimpleCallExpression, types_SimpleSimpleLiteral as SimpleSimpleLiteral, types_SimpleSourceLocation as SimpleSourceLocation, types_SimpleSpreadElement as SimpleSpreadElement, types_SimpleSwitchCase as SimpleSwitchCase, types_SimpleSwitchStatement as SimpleSwitchStatement, types_SimpleTemplateElement as SimpleTemplateElement, types_SimpleTemplateLiteral as SimpleTemplateLiteral, types_SimpleThisExpression as SimpleThisExpression, types_SimpleThrowStatement as SimpleThrowStatement, types_SimpleTryStatement as SimpleTryStatement, types_SimpleUnaryExpression as SimpleUnaryExpression, types_SimpleUpdateExpression as SimpleUpdateExpression, types_SimpleVariableDeclaration as SimpleVariableDeclaration, types_SimpleVariableDeclarator as SimpleVariableDeclarator, types_SimpleWhileStatement as SimpleWhileStatement, types_SourceLocation as SourceLocation, types_SpreadElement as SpreadElement, types_Statement as Statement, types_SwitchCase as SwitchCase, types_SwitchStatement as SwitchStatement, types_TSArrayType as TSArrayType, types_TSCallSignatureDeclaration as TSCallSignatureDeclaration, types_TSConditionalType as TSConditionalType, types_TSFunctionType as TSFunctionType, types_TSIndexSignature as TSIndexSignature, types_TSIndexedAccessType as TSIndexedAccessType, types_TSInferType as TSInferType, types_TSIntersectionType as TSIntersectionType, types_TSKeywordType as TSKeywordType, types_TSLite as TSLite, types_TSLiteMarker as TSLiteMarker, types_TSLiteralType as TSLiteralType, types_TSMappedType as TSMappedType, types_TSPropertySignature as TSPropertySignature, types_TSTupleType as TSTupleType, types_TSType as TSType, types_TSTypeLiteral as TSTypeLiteral, types_TSTypeMember as TSTypeMember, types_TSTypeOperator as TSTypeOperator, types_TSTypeParameter as TSTypeParameter, types_TSTypeQuery as TSTypeQuery, types_TSTypeReference as TSTypeReference, types_TSUnionType as TSUnionType, types_TaggedTemplateExpression as TaggedTemplateExpression, types_TemplateElement as TemplateElement, types_TemplateLiteral as TemplateLiteral, types_ThisExpression as ThisExpression, types_ThrowStatement as ThrowStatement, types_TryStatement as TryStatement, types_UnaryExpression as UnaryExpression, types_UnaryOperator as UnaryOperator, types_UpdateExpression as UpdateExpression, types_UpdateOperator as UpdateOperator, types_VariableDeclaration as VariableDeclaration, types_VariableDeclarator as VariableDeclarator, types_WhileStatement as WhileStatement };
|
|
964
|
+
export type { types_ArrayExpression as ArrayExpression, types_ArrayPattern as ArrayPattern, types_ArrowFunctionExpression as ArrowFunctionExpression, types_AssignmentExpression as AssignmentExpression, types_AssignmentOperator as AssignmentOperator, types_AssignmentPattern as AssignmentPattern, types_AssignmentProperty as AssignmentProperty, types_AwaitExpression as AwaitExpression, types_BaseCallExpression as BaseCallExpression, types_BaseDeclaration as BaseDeclaration, types_BaseExpression as BaseExpression, types_BaseForXStatement as BaseForXStatement, types_BaseFunction as BaseFunction, types_BaseModuleDeclaration as BaseModuleDeclaration, types_BaseModuleSpecifier as BaseModuleSpecifier, types_BaseNode as BaseNode, types_BaseNodeWithoutComments as BaseNodeWithoutComments, types_BasePattern as BasePattern, types_BaseStatement as BaseStatement, types_BigIntLiteral as BigIntLiteral, types_BinaryExpression as BinaryExpression, types_BinaryOperator as BinaryOperator, types_BlockStatement as BlockStatement, types_BreakStatement as BreakStatement, types_CallExpression as CallExpression, types_CatchClause as CatchClause, types_ChainElement as ChainElement, types_ChainExpression as ChainExpression, types_Comment as Comment, types_ConditionalExpression as ConditionalExpression, types_ContinueStatement as ContinueStatement, types_DebuggerStatement as DebuggerStatement, types_Declaration as Declaration, types_Directive as Directive, types_DoWhileStatement as DoWhileStatement, types_EmptyStatement as EmptyStatement, types_ExportDefaultDeclaration as ExportDefaultDeclaration, types_ExportNamedDeclaration as ExportNamedDeclaration, types_ExportSpecifier as ExportSpecifier, types_Expression as Expression, types_ExpressionStatement as ExpressionStatement, types_ForInStatement as ForInStatement, types_ForOfStatement as ForOfStatement, types_ForStatement as ForStatement, types_Function as Function, types_FunctionDeclaration as FunctionDeclaration, types_FunctionExpression as FunctionExpression, types_Identifier as Identifier, types_IfStatement as IfStatement, types_ImportDeclaration as ImportDeclaration, types_ImportDefaultSpecifier as ImportDefaultSpecifier, types_ImportExpression as ImportExpression, types_ImportNamespaceSpecifier as ImportNamespaceSpecifier, types_ImportSpecifier as ImportSpecifier, types_JSXAttribute as JSXAttribute, types_JSXChild as JSXChild, types_JSXClosingElement as JSXClosingElement, types_JSXClosingFragment as JSXClosingFragment, types_JSXElement as JSXElement, types_JSXEmptyExpression as JSXEmptyExpression, types_JSXExpressionContainer as JSXExpressionContainer, types_JSXFragment as JSXFragment, types_JSXIdentifier as JSXIdentifier, types_JSXMemberExpression as JSXMemberExpression, types_JSXNamespacedName as JSXNamespacedName, types_JSXOpeningElement as JSXOpeningElement, types_JSXOpeningFragment as JSXOpeningFragment, types_JSXSpreadAttribute as JSXSpreadAttribute, types_JSXSpreadChild as JSXSpreadChild, types_JSXTagName as JSXTagName, types_JSXText as JSXText, types_JsonExpression as JsonExpression, types_LabeledStatement as LabeledStatement, types_Literal as Literal, types_LogicalExpression as LogicalExpression, types_LogicalOperator as LogicalOperator, types_MaybeNamedFunctionDeclaration as MaybeNamedFunctionDeclaration, types_MemberExpression as MemberExpression, types_MetaProperty as MetaProperty, types_ModuleDeclaration as ModuleDeclaration, types_ModuleSpecifier as ModuleSpecifier, types_Node as Node, types_NodeMap as NodeMap, types_ObjectExpression as ObjectExpression, types_ObjectPattern as ObjectPattern, types_Pattern as Pattern, types_Placeholder as Placeholder, types_Position as Position, types_Program as Program, types_Property as Property, types_RegExpLiteral as RegExpLiteral, types_RestElement as RestElement, types_ReturnStatement as ReturnStatement, types_SequenceExpression as SequenceExpression, types_SimpleArrayExpression as SimpleArrayExpression, types_SimpleArrayPattern as SimpleArrayPattern, types_SimpleArrowFunctionExpression as SimpleArrowFunctionExpression, types_SimpleAssignmentExpression as SimpleAssignmentExpression, types_SimpleAssignmentPattern as SimpleAssignmentPattern, types_SimpleAssignmentProperty as SimpleAssignmentProperty, types_SimpleAwaitExpression as SimpleAwaitExpression, types_SimpleBaseCallExpression as SimpleBaseCallExpression, types_SimpleBaseDeclaration as SimpleBaseDeclaration, types_SimpleBaseExpression as SimpleBaseExpression, types_SimpleBaseForXStatement as SimpleBaseForXStatement, types_SimpleBaseFunction as SimpleBaseFunction, types_SimpleBaseNode as SimpleBaseNode, types_SimpleBaseNodeWithoutComments as SimpleBaseNodeWithoutComments, types_SimpleBasePattern as SimpleBasePattern, types_SimpleBaseStatement as SimpleBaseStatement, types_SimpleBigIntLiteral as SimpleBigIntLiteral, types_SimpleBinaryExpression as SimpleBinaryExpression, types_SimpleBlockStatement as SimpleBlockStatement, types_SimpleBreakStatement as SimpleBreakStatement, types_SimpleCallExpression as SimpleCallExpression, types_SimpleCatchClause as SimpleCatchClause, types_SimpleChainExpression as SimpleChainExpression, types_SimpleComment as SimpleComment, types_SimpleConditionalExpression as SimpleConditionalExpression, types_SimpleContinueStatement as SimpleContinueStatement, types_SimpleDoWhileStatement as SimpleDoWhileStatement, types_SimpleEmptyStatement as SimpleEmptyStatement, types_SimpleExpressionStatement as SimpleExpressionStatement, types_SimpleForInStatement as SimpleForInStatement, types_SimpleForOfStatement as SimpleForOfStatement, types_SimpleForStatement as SimpleForStatement, types_SimpleFunctionDeclaration as SimpleFunctionDeclaration, types_SimpleFunctionExpression as SimpleFunctionExpression, types_SimpleIdentifier as SimpleIdentifier, types_SimpleIfStatement as SimpleIfStatement, types_SimpleJsonExpression as SimpleJsonExpression, types_SimpleLabeledStatement as SimpleLabeledStatement, types_SimpleLiteral as SimpleLiteral, types_SimpleLogicalExpression as SimpleLogicalExpression, types_SimpleMemberExpression as SimpleMemberExpression, types_SimpleNode as SimpleNode, types_SimpleObjectExpression as SimpleObjectExpression, types_SimpleObjectPattern as SimpleObjectPattern, types_SimplePosition as SimplePosition, types_SimpleProgram as SimpleProgram, types_SimpleProperty as SimpleProperty, types_SimpleRegExpLiteral as SimpleRegExpLiteral, types_SimpleRestElement as SimpleRestElement, types_SimpleReturnStatement as SimpleReturnStatement, types_SimpleSequenceExpression as SimpleSequenceExpression, types_SimpleSimpleCallExpression as SimpleSimpleCallExpression, types_SimpleSimpleLiteral as SimpleSimpleLiteral, types_SimpleSourceLocation as SimpleSourceLocation, types_SimpleSpreadElement as SimpleSpreadElement, types_SimpleSwitchCase as SimpleSwitchCase, types_SimpleSwitchStatement as SimpleSwitchStatement, types_SimpleTemplateElement as SimpleTemplateElement, types_SimpleTemplateLiteral as SimpleTemplateLiteral, types_SimpleThisExpression as SimpleThisExpression, types_SimpleThrowStatement as SimpleThrowStatement, types_SimpleTryStatement as SimpleTryStatement, types_SimpleUnaryExpression as SimpleUnaryExpression, types_SimpleUpdateExpression as SimpleUpdateExpression, types_SimpleVariableDeclaration as SimpleVariableDeclaration, types_SimpleVariableDeclarator as SimpleVariableDeclarator, types_SimpleWhileStatement as SimpleWhileStatement, types_SourceLocation as SourceLocation, types_SpreadElement as SpreadElement, types_Statement as Statement, types_SwitchCase as SwitchCase, types_SwitchStatement as SwitchStatement, types_TSArrayType as TSArrayType, types_TSCallSignatureDeclaration as TSCallSignatureDeclaration, types_TSConditionalType as TSConditionalType, types_TSFunctionType as TSFunctionType, types_TSIndexSignature as TSIndexSignature, types_TSIndexedAccessType as TSIndexedAccessType, types_TSInferType as TSInferType, types_TSIntersectionType as TSIntersectionType, types_TSKeywordType as TSKeywordType, types_TSLite as TSLite, types_TSLiteMarker as TSLiteMarker, types_TSLiteralType as TSLiteralType, types_TSMappedType as TSMappedType, types_TSPropertySignature as TSPropertySignature, types_TSTupleType as TSTupleType, types_TSType as TSType, types_TSTypeLiteral as TSTypeLiteral, types_TSTypeMember as TSTypeMember, types_TSTypeOperator as TSTypeOperator, types_TSTypeParameter as TSTypeParameter, types_TSTypePredicate as TSTypePredicate, types_TSTypeQuery as TSTypeQuery, types_TSTypeReference as TSTypeReference, types_TSUnionType as TSUnionType, types_TaggedTemplateExpression as TaggedTemplateExpression, types_TemplateElement as TemplateElement, types_TemplateLiteral as TemplateLiteral, types_ThisExpression as ThisExpression, types_ThrowStatement as ThrowStatement, types_TryStatement as TryStatement, types_UnaryExpression as UnaryExpression, types_UnaryOperator as UnaryOperator, types_UpdateExpression as UpdateExpression, types_UpdateOperator as UpdateOperator, types_VariableDeclaration as VariableDeclaration, types_VariableDeclarator as VariableDeclarator, types_WhileStatement as WhileStatement };
|
|
957
965
|
}
|
|
958
966
|
|
|
959
967
|
/**
|
|
@@ -1069,4 +1077,4 @@ declare const jsxElement: (openingElement: JSXOpeningElement, children?: JSXChil
|
|
|
1069
1077
|
declare const jsxFragment: (children?: JSXChild[], openingFragment?: JSXOpeningFragment, closingFragment?: JSXClosingFragment) => JSXFragment;
|
|
1070
1078
|
declare const json: (body: TSLite) => JsonExpression;
|
|
1071
1079
|
|
|
1072
|
-
export { type ModuleDeclaration as $, type ArrayExpression as A, type BaseNode as B, type CatchClause as C, type DoWhileStatement as D, type EmptyStatement as E, type ForInStatement as F, type TemplateLiteral as G, type ThrowStatement as H, type Identifier as I, type JsonExpression as J, type TryStatement as K, type Literal as L, type MemberExpression as M, type Node as N, type ObjectExpression as O, type Program as P, type UpdateExpression as Q, type ReturnStatement as R, type SimpleCallExpression as S, type TemplateElement as T, type UnaryExpression as U, type VariableDeclaration as V, type VariableDeclarator as W, type WhileStatement as X, type SpreadElement as Y, type RestElement as Z, type Directive as _, type ArrayPattern as a, type SimpleBaseForXStatement as a$, type JSXElement as a0, type JSXFragment as a1, type CallExpression as a2, type AssignmentOperator as a3, type AssignmentPattern as a4, type BaseCallExpression as a5, type BaseDeclaration as a6, type BaseExpression as a7, type BaseForXStatement as a8, type BaseFunction as a9, type JSXOpeningElement as aA, type JSXOpeningFragment as aB, type JSXSpreadAttribute as aC, type JSXSpreadChild as aD, type JSXTagName as aE, type JSXText as aF, type LabeledStatement as aG, type LogicalOperator as aH, type MaybeNamedFunctionDeclaration as aI, type MetaProperty as aJ, type ModuleSpecifier as aK, type NodeMap as aL, type Pattern as aM, type Placeholder as aN, type Position as aO, type RegExpLiteral as aP, type SequenceExpression as aQ, type SimpleArrayExpression as aR, type SimpleArrayPattern as aS, type SimpleArrowFunctionExpression as aT, type SimpleAssignmentExpression as aU, type SimpleAssignmentPattern as aV, type SimpleAssignmentProperty as aW, type SimpleAwaitExpression as aX, type SimpleBaseCallExpression as aY, type SimpleBaseDeclaration as aZ, type SimpleBaseExpression as a_, type BaseModuleDeclaration as aa, type BaseModuleSpecifier as ab, type BaseNodeWithoutComments as ac, type BasePattern as ad, type BaseStatement as ae, type BigIntLiteral as af, type BinaryOperator as ag, type ChainElement as ah, type Comment as ai, type DebuggerStatement as aj, type Declaration as ak, type ExportDefaultDeclaration as al, type ExportNamedDeclaration as am, type ExportSpecifier as an, type Expression as ao, type Function as ap, type ImportExpression as aq, type JSXAttribute as ar, type JSXChild as as, type JSXClosingElement as at, type JSXClosingFragment as au, type JSXEmptyExpression as av, type JSXExpressionContainer as aw, type JSXIdentifier as ax, type JSXMemberExpression as ay, type JSXNamespacedName as az, type ArrowFunctionExpression as b, type TSInferType as b$, type SimpleBaseFunction as b0, type SimpleBaseNode as b1, type SimpleBaseNodeWithoutComments as b2, type SimpleBasePattern as b3, type SimpleBaseStatement as b4, type SimpleBigIntLiteral as b5, type SimpleBinaryExpression as b6, type SimpleBlockStatement as b7, type SimpleBreakStatement as b8, type SimpleCatchClause as b9, type SimpleRestElement as bA, type SimpleReturnStatement as bB, type SimpleSequenceExpression as bC, type SimpleSimpleCallExpression as bD, type SimpleSimpleLiteral as bE, type SimpleSourceLocation as bF, type SimpleSpreadElement as bG, type SimpleSwitchCase as bH, type SimpleSwitchStatement as bI, type SimpleTemplateElement as bJ, type SimpleTemplateLiteral as bK, type SimpleThisExpression as bL, type SimpleThrowStatement as bM, type SimpleTryStatement as bN, type SimpleUnaryExpression as bO, type SimpleUpdateExpression as bP, type SimpleVariableDeclaration as bQ, type SimpleVariableDeclarator as bR, type SimpleWhileStatement as bS, type SourceLocation as bT, type Statement as bU, type TSArrayType as bV, type TSCallSignatureDeclaration as bW, type TSConditionalType as bX, type TSFunctionType as bY, type TSIndexSignature as bZ, type TSIndexedAccessType as b_, type SimpleChainExpression as ba, type SimpleComment as bb, type SimpleConditionalExpression as bc, type SimpleContinueStatement as bd, type SimpleDoWhileStatement as be, type SimpleEmptyStatement as bf, type SimpleExpressionStatement as bg, type SimpleForInStatement as bh, type SimpleForOfStatement as bi, type SimpleForStatement as bj, type SimpleFunctionDeclaration as bk, type SimpleFunctionExpression as bl, type SimpleIdentifier as bm, type SimpleIfStatement as bn, type SimpleJsonExpression as bo, type SimpleLabeledStatement as bp, type SimpleLiteral as bq, type SimpleLogicalExpression as br, type SimpleMemberExpression as bs, type SimpleNode as bt, type SimpleObjectExpression as bu, type SimpleObjectPattern as bv, type SimplePosition as bw, type SimpleProgram as bx, type SimpleProperty as by, type SimpleRegExpLiteral as bz, type AssignmentExpression as c,
|
|
1080
|
+
export { type ModuleDeclaration as $, type ArrayExpression as A, type BaseNode as B, type CatchClause as C, type DoWhileStatement as D, type EmptyStatement as E, type ForInStatement as F, type TemplateLiteral as G, type ThrowStatement as H, type Identifier as I, type JsonExpression as J, type TryStatement as K, type Literal as L, type MemberExpression as M, type Node as N, type ObjectExpression as O, type Program as P, type UpdateExpression as Q, type ReturnStatement as R, type SimpleCallExpression as S, type TemplateElement as T, type UnaryExpression as U, type VariableDeclaration as V, type VariableDeclarator as W, type WhileStatement as X, type SpreadElement as Y, type RestElement as Z, type Directive as _, type ArrayPattern as a, type SimpleBaseForXStatement as a$, type JSXElement as a0, type JSXFragment as a1, type CallExpression as a2, type AssignmentOperator as a3, type AssignmentPattern as a4, type BaseCallExpression as a5, type BaseDeclaration as a6, type BaseExpression as a7, type BaseForXStatement as a8, type BaseFunction as a9, type JSXOpeningElement as aA, type JSXOpeningFragment as aB, type JSXSpreadAttribute as aC, type JSXSpreadChild as aD, type JSXTagName as aE, type JSXText as aF, type LabeledStatement as aG, type LogicalOperator as aH, type MaybeNamedFunctionDeclaration as aI, type MetaProperty as aJ, type ModuleSpecifier as aK, type NodeMap as aL, type Pattern as aM, type Placeholder as aN, type Position as aO, type RegExpLiteral as aP, type SequenceExpression as aQ, type SimpleArrayExpression as aR, type SimpleArrayPattern as aS, type SimpleArrowFunctionExpression as aT, type SimpleAssignmentExpression as aU, type SimpleAssignmentPattern as aV, type SimpleAssignmentProperty as aW, type SimpleAwaitExpression as aX, type SimpleBaseCallExpression as aY, type SimpleBaseDeclaration as aZ, type SimpleBaseExpression as a_, type BaseModuleDeclaration as aa, type BaseModuleSpecifier as ab, type BaseNodeWithoutComments as ac, type BasePattern as ad, type BaseStatement as ae, type BigIntLiteral as af, type BinaryOperator as ag, type ChainElement as ah, type Comment as ai, type DebuggerStatement as aj, type Declaration as ak, type ExportDefaultDeclaration as al, type ExportNamedDeclaration as am, type ExportSpecifier as an, type Expression as ao, type Function as ap, type ImportExpression as aq, type JSXAttribute as ar, type JSXChild as as, type JSXClosingElement as at, type JSXClosingFragment as au, type JSXEmptyExpression as av, type JSXExpressionContainer as aw, type JSXIdentifier as ax, type JSXMemberExpression as ay, type JSXNamespacedName as az, type ArrowFunctionExpression as b, type TSInferType as b$, type SimpleBaseFunction as b0, type SimpleBaseNode as b1, type SimpleBaseNodeWithoutComments as b2, type SimpleBasePattern as b3, type SimpleBaseStatement as b4, type SimpleBigIntLiteral as b5, type SimpleBinaryExpression as b6, type SimpleBlockStatement as b7, type SimpleBreakStatement as b8, type SimpleCatchClause as b9, type SimpleRestElement as bA, type SimpleReturnStatement as bB, type SimpleSequenceExpression as bC, type SimpleSimpleCallExpression as bD, type SimpleSimpleLiteral as bE, type SimpleSourceLocation as bF, type SimpleSpreadElement as bG, type SimpleSwitchCase as bH, type SimpleSwitchStatement as bI, type SimpleTemplateElement as bJ, type SimpleTemplateLiteral as bK, type SimpleThisExpression as bL, type SimpleThrowStatement as bM, type SimpleTryStatement as bN, type SimpleUnaryExpression as bO, type SimpleUpdateExpression as bP, type SimpleVariableDeclaration as bQ, type SimpleVariableDeclarator as bR, type SimpleWhileStatement as bS, type SourceLocation as bT, type Statement as bU, type TSArrayType as bV, type TSCallSignatureDeclaration as bW, type TSConditionalType as bX, type TSFunctionType as bY, type TSIndexSignature as bZ, type TSIndexedAccessType as b_, type SimpleChainExpression as ba, type SimpleComment as bb, type SimpleConditionalExpression as bc, type SimpleContinueStatement as bd, type SimpleDoWhileStatement as be, type SimpleEmptyStatement as bf, type SimpleExpressionStatement as bg, type SimpleForInStatement as bh, type SimpleForOfStatement as bi, type SimpleForStatement as bj, type SimpleFunctionDeclaration as bk, type SimpleFunctionExpression as bl, type SimpleIdentifier as bm, type SimpleIfStatement as bn, type SimpleJsonExpression as bo, type SimpleLabeledStatement as bp, type SimpleLiteral as bq, type SimpleLogicalExpression as br, type SimpleMemberExpression as bs, type SimpleNode as bt, type SimpleObjectExpression as bu, type SimpleObjectPattern as bv, type SimplePosition as bw, type SimpleProgram as bx, type SimpleProperty as by, type SimpleRegExpLiteral as bz, type AssignmentExpression as c, jsxExpressionContainer as c$, type TSIntersectionType as c0, type TSKeywordType as c1, type TSLite as c2, type TSLiteMarker as c3, type TSLiteralType as c4, type TSMappedType as c5, type TSPropertySignature as c6, type TSTupleType as c7, type TSType as c8, type TSTypeLiteral as c9, callExpression as cA, catchClause as cB, chainExpression as cC, conditionalExpression as cD, continueStatement as cE, doWhileStatement as cF, emptyStatement as cG, exportDefaultDeclaration as cH, exportNamedDeclaration as cI, exportSpecifier as cJ, expressionStatement as cK, forInStatement as cL, forOfStatement as cM, forStatement as cN, functionDeclaration as cO, functionExpression as cP, identifier as cQ, ifStatement as cR, importDeclaration as cS, importDefaultSpecifier as cT, importNamespaceSpecifier as cU, importSpecifier as cV, jsxAttribute as cW, jsxClosingElement as cX, jsxClosingFragment as cY, jsxElement as cZ, jsxEmptyExpression as c_, type TSTypeMember as ca, type TSTypeOperator as cb, type TSTypeParameter as cc, type TSTypePredicate as cd, type TSTypeQuery as ce, type TSTypeReference as cf, type TSUnionType as cg, type TaggedTemplateExpression as ch, type ThisExpression as ci, type UnaryOperator as cj, type UpdateOperator as ck, expr as cl, fromExprMarker as cm, json as cn, jsonExpression as co, types as cp, arrayExpression as cq, arrayPattern as cr, arrowFunctionExpression as cs, assignmentExpression as ct, assignmentPattern as cu, assignmentProperty as cv, awaitExpression as cw, binaryExpression as cx, blockStatement as cy, breakStatement as cz, type AssignmentProperty as d, jsxFragment as d0, jsxIdentifier as d1, jsxMemberExpression as d2, jsxNamespacedName as d3, jsxOpeningElement as d4, jsxOpeningFragment as d5, jsxSpreadAttribute as d6, jsxSpreadChild as d7, jsxText as d8, literal as d9, logicalExpression as da, memberExpression as db, objectExpression as dc, objectPattern as dd, placeholder as de, program as df, property as dg, restElement as dh, returnStatement as di, spreadElement as dj, switchCase as dk, switchStatement as dl, templateElement as dm, templateLiteral as dn, throwStatement as dp, tryStatement as dq, unaryExpression as dr, updateExpression as ds, variableDeclaration as dt, variableDeclarator as du, whileStatement as dv, type AwaitExpression as e, type BinaryExpression as f, type BlockStatement as g, type BreakStatement as h, type ChainExpression as i, type ConditionalExpression as j, type ContinueStatement as k, type ExpressionStatement as l, type ForOfStatement as m, type ForStatement as n, type FunctionDeclaration as o, type FunctionExpression as p, type IfStatement as q, type ImportDeclaration as r, type ImportDefaultSpecifier as s, type ImportNamespaceSpecifier as t, type ImportSpecifier as u, type LogicalExpression as v, type ObjectPattern as w, type Property as x, type SwitchCase as y, type SwitchStatement as z };
|
|
@@ -562,7 +562,7 @@ interface ImportNamespaceSpecifier extends BaseModuleSpecifier {
|
|
|
562
562
|
type: "ImportNamespaceSpecifier";
|
|
563
563
|
}
|
|
564
564
|
/** Qualquer nó de tipo sintático. */
|
|
565
|
-
type TSType = TSKeywordType | TSLiteralType | TSTypeReference | TSArrayType | TSIndexedAccessType | TSUnionType | TSIntersectionType | TSFunctionType | TSTypeLiteral | TSTupleType | TSTypeOperator | TSInferType | TSConditionalType | TSMappedType | TSTypeQuery;
|
|
565
|
+
type TSType = TSKeywordType | TSLiteralType | TSTypeReference | TSArrayType | TSIndexedAccessType | TSUnionType | TSIntersectionType | TSFunctionType | TSTypeLiteral | TSTupleType | TSTypeOperator | TSInferType | TSConditionalType | TSMappedType | TSTypeQuery | TSTypePredicate;
|
|
566
566
|
/** `string`/`number`/`boolean`/`any`/`unknown`/`undefined`/`void`/`null`/`never`. */
|
|
567
567
|
interface TSKeywordType extends BaseNode {
|
|
568
568
|
type: "TSKeywordType";
|
|
@@ -616,6 +616,13 @@ interface TSFunctionType extends BaseNode {
|
|
|
616
616
|
returnType: TSType;
|
|
617
617
|
typeParams?: string[];
|
|
618
618
|
}
|
|
619
|
+
/** `x is S` — o type predicate como tipo de RETORNO (`(v: unknown) => v is string`).
|
|
620
|
+
* No `Schema` vira `fn.guard` (o retorno é `boolean`); só o emissor de fonte o lê. */
|
|
621
|
+
interface TSTypePredicate extends BaseNode {
|
|
622
|
+
type: "TSTypePredicate";
|
|
623
|
+
parameterName: string;
|
|
624
|
+
typeAnnotation: TSType;
|
|
625
|
+
}
|
|
619
626
|
/** `{ k: T; k2?: U }` (+ index/call signatures). */
|
|
620
627
|
interface TSTypeLiteral extends BaseNode {
|
|
621
628
|
type: "TSTypeLiteral";
|
|
@@ -936,6 +943,7 @@ type types_TSTypeLiteral = TSTypeLiteral;
|
|
|
936
943
|
type types_TSTypeMember = TSTypeMember;
|
|
937
944
|
type types_TSTypeOperator = TSTypeOperator;
|
|
938
945
|
type types_TSTypeParameter = TSTypeParameter;
|
|
946
|
+
type types_TSTypePredicate = TSTypePredicate;
|
|
939
947
|
type types_TSTypeQuery = TSTypeQuery;
|
|
940
948
|
type types_TSTypeReference = TSTypeReference;
|
|
941
949
|
type types_TSUnionType = TSUnionType;
|
|
@@ -953,7 +961,7 @@ type types_VariableDeclaration = VariableDeclaration;
|
|
|
953
961
|
type types_VariableDeclarator = VariableDeclarator;
|
|
954
962
|
type types_WhileStatement = WhileStatement;
|
|
955
963
|
declare namespace types {
|
|
956
|
-
export type { types_ArrayExpression as ArrayExpression, types_ArrayPattern as ArrayPattern, types_ArrowFunctionExpression as ArrowFunctionExpression, types_AssignmentExpression as AssignmentExpression, types_AssignmentOperator as AssignmentOperator, types_AssignmentPattern as AssignmentPattern, types_AssignmentProperty as AssignmentProperty, types_AwaitExpression as AwaitExpression, types_BaseCallExpression as BaseCallExpression, types_BaseDeclaration as BaseDeclaration, types_BaseExpression as BaseExpression, types_BaseForXStatement as BaseForXStatement, types_BaseFunction as BaseFunction, types_BaseModuleDeclaration as BaseModuleDeclaration, types_BaseModuleSpecifier as BaseModuleSpecifier, types_BaseNode as BaseNode, types_BaseNodeWithoutComments as BaseNodeWithoutComments, types_BasePattern as BasePattern, types_BaseStatement as BaseStatement, types_BigIntLiteral as BigIntLiteral, types_BinaryExpression as BinaryExpression, types_BinaryOperator as BinaryOperator, types_BlockStatement as BlockStatement, types_BreakStatement as BreakStatement, types_CallExpression as CallExpression, types_CatchClause as CatchClause, types_ChainElement as ChainElement, types_ChainExpression as ChainExpression, types_Comment as Comment, types_ConditionalExpression as ConditionalExpression, types_ContinueStatement as ContinueStatement, types_DebuggerStatement as DebuggerStatement, types_Declaration as Declaration, types_Directive as Directive, types_DoWhileStatement as DoWhileStatement, types_EmptyStatement as EmptyStatement, types_ExportDefaultDeclaration as ExportDefaultDeclaration, types_ExportNamedDeclaration as ExportNamedDeclaration, types_ExportSpecifier as ExportSpecifier, types_Expression as Expression, types_ExpressionStatement as ExpressionStatement, types_ForInStatement as ForInStatement, types_ForOfStatement as ForOfStatement, types_ForStatement as ForStatement, types_Function as Function, types_FunctionDeclaration as FunctionDeclaration, types_FunctionExpression as FunctionExpression, types_Identifier as Identifier, types_IfStatement as IfStatement, types_ImportDeclaration as ImportDeclaration, types_ImportDefaultSpecifier as ImportDefaultSpecifier, types_ImportExpression as ImportExpression, types_ImportNamespaceSpecifier as ImportNamespaceSpecifier, types_ImportSpecifier as ImportSpecifier, types_JSXAttribute as JSXAttribute, types_JSXChild as JSXChild, types_JSXClosingElement as JSXClosingElement, types_JSXClosingFragment as JSXClosingFragment, types_JSXElement as JSXElement, types_JSXEmptyExpression as JSXEmptyExpression, types_JSXExpressionContainer as JSXExpressionContainer, types_JSXFragment as JSXFragment, types_JSXIdentifier as JSXIdentifier, types_JSXMemberExpression as JSXMemberExpression, types_JSXNamespacedName as JSXNamespacedName, types_JSXOpeningElement as JSXOpeningElement, types_JSXOpeningFragment as JSXOpeningFragment, types_JSXSpreadAttribute as JSXSpreadAttribute, types_JSXSpreadChild as JSXSpreadChild, types_JSXTagName as JSXTagName, types_JSXText as JSXText, types_JsonExpression as JsonExpression, types_LabeledStatement as LabeledStatement, types_Literal as Literal, types_LogicalExpression as LogicalExpression, types_LogicalOperator as LogicalOperator, types_MaybeNamedFunctionDeclaration as MaybeNamedFunctionDeclaration, types_MemberExpression as MemberExpression, types_MetaProperty as MetaProperty, types_ModuleDeclaration as ModuleDeclaration, types_ModuleSpecifier as ModuleSpecifier, types_Node as Node, types_NodeMap as NodeMap, types_ObjectExpression as ObjectExpression, types_ObjectPattern as ObjectPattern, types_Pattern as Pattern, types_Placeholder as Placeholder, types_Position as Position, types_Program as Program, types_Property as Property, types_RegExpLiteral as RegExpLiteral, types_RestElement as RestElement, types_ReturnStatement as ReturnStatement, types_SequenceExpression as SequenceExpression, types_SimpleArrayExpression as SimpleArrayExpression, types_SimpleArrayPattern as SimpleArrayPattern, types_SimpleArrowFunctionExpression as SimpleArrowFunctionExpression, types_SimpleAssignmentExpression as SimpleAssignmentExpression, types_SimpleAssignmentPattern as SimpleAssignmentPattern, types_SimpleAssignmentProperty as SimpleAssignmentProperty, types_SimpleAwaitExpression as SimpleAwaitExpression, types_SimpleBaseCallExpression as SimpleBaseCallExpression, types_SimpleBaseDeclaration as SimpleBaseDeclaration, types_SimpleBaseExpression as SimpleBaseExpression, types_SimpleBaseForXStatement as SimpleBaseForXStatement, types_SimpleBaseFunction as SimpleBaseFunction, types_SimpleBaseNode as SimpleBaseNode, types_SimpleBaseNodeWithoutComments as SimpleBaseNodeWithoutComments, types_SimpleBasePattern as SimpleBasePattern, types_SimpleBaseStatement as SimpleBaseStatement, types_SimpleBigIntLiteral as SimpleBigIntLiteral, types_SimpleBinaryExpression as SimpleBinaryExpression, types_SimpleBlockStatement as SimpleBlockStatement, types_SimpleBreakStatement as SimpleBreakStatement, types_SimpleCallExpression as SimpleCallExpression, types_SimpleCatchClause as SimpleCatchClause, types_SimpleChainExpression as SimpleChainExpression, types_SimpleComment as SimpleComment, types_SimpleConditionalExpression as SimpleConditionalExpression, types_SimpleContinueStatement as SimpleContinueStatement, types_SimpleDoWhileStatement as SimpleDoWhileStatement, types_SimpleEmptyStatement as SimpleEmptyStatement, types_SimpleExpressionStatement as SimpleExpressionStatement, types_SimpleForInStatement as SimpleForInStatement, types_SimpleForOfStatement as SimpleForOfStatement, types_SimpleForStatement as SimpleForStatement, types_SimpleFunctionDeclaration as SimpleFunctionDeclaration, types_SimpleFunctionExpression as SimpleFunctionExpression, types_SimpleIdentifier as SimpleIdentifier, types_SimpleIfStatement as SimpleIfStatement, types_SimpleJsonExpression as SimpleJsonExpression, types_SimpleLabeledStatement as SimpleLabeledStatement, types_SimpleLiteral as SimpleLiteral, types_SimpleLogicalExpression as SimpleLogicalExpression, types_SimpleMemberExpression as SimpleMemberExpression, types_SimpleNode as SimpleNode, types_SimpleObjectExpression as SimpleObjectExpression, types_SimpleObjectPattern as SimpleObjectPattern, types_SimplePosition as SimplePosition, types_SimpleProgram as SimpleProgram, types_SimpleProperty as SimpleProperty, types_SimpleRegExpLiteral as SimpleRegExpLiteral, types_SimpleRestElement as SimpleRestElement, types_SimpleReturnStatement as SimpleReturnStatement, types_SimpleSequenceExpression as SimpleSequenceExpression, types_SimpleSimpleCallExpression as SimpleSimpleCallExpression, types_SimpleSimpleLiteral as SimpleSimpleLiteral, types_SimpleSourceLocation as SimpleSourceLocation, types_SimpleSpreadElement as SimpleSpreadElement, types_SimpleSwitchCase as SimpleSwitchCase, types_SimpleSwitchStatement as SimpleSwitchStatement, types_SimpleTemplateElement as SimpleTemplateElement, types_SimpleTemplateLiteral as SimpleTemplateLiteral, types_SimpleThisExpression as SimpleThisExpression, types_SimpleThrowStatement as SimpleThrowStatement, types_SimpleTryStatement as SimpleTryStatement, types_SimpleUnaryExpression as SimpleUnaryExpression, types_SimpleUpdateExpression as SimpleUpdateExpression, types_SimpleVariableDeclaration as SimpleVariableDeclaration, types_SimpleVariableDeclarator as SimpleVariableDeclarator, types_SimpleWhileStatement as SimpleWhileStatement, types_SourceLocation as SourceLocation, types_SpreadElement as SpreadElement, types_Statement as Statement, types_SwitchCase as SwitchCase, types_SwitchStatement as SwitchStatement, types_TSArrayType as TSArrayType, types_TSCallSignatureDeclaration as TSCallSignatureDeclaration, types_TSConditionalType as TSConditionalType, types_TSFunctionType as TSFunctionType, types_TSIndexSignature as TSIndexSignature, types_TSIndexedAccessType as TSIndexedAccessType, types_TSInferType as TSInferType, types_TSIntersectionType as TSIntersectionType, types_TSKeywordType as TSKeywordType, types_TSLite as TSLite, types_TSLiteMarker as TSLiteMarker, types_TSLiteralType as TSLiteralType, types_TSMappedType as TSMappedType, types_TSPropertySignature as TSPropertySignature, types_TSTupleType as TSTupleType, types_TSType as TSType, types_TSTypeLiteral as TSTypeLiteral, types_TSTypeMember as TSTypeMember, types_TSTypeOperator as TSTypeOperator, types_TSTypeParameter as TSTypeParameter, types_TSTypeQuery as TSTypeQuery, types_TSTypeReference as TSTypeReference, types_TSUnionType as TSUnionType, types_TaggedTemplateExpression as TaggedTemplateExpression, types_TemplateElement as TemplateElement, types_TemplateLiteral as TemplateLiteral, types_ThisExpression as ThisExpression, types_ThrowStatement as ThrowStatement, types_TryStatement as TryStatement, types_UnaryExpression as UnaryExpression, types_UnaryOperator as UnaryOperator, types_UpdateExpression as UpdateExpression, types_UpdateOperator as UpdateOperator, types_VariableDeclaration as VariableDeclaration, types_VariableDeclarator as VariableDeclarator, types_WhileStatement as WhileStatement };
|
|
964
|
+
export type { types_ArrayExpression as ArrayExpression, types_ArrayPattern as ArrayPattern, types_ArrowFunctionExpression as ArrowFunctionExpression, types_AssignmentExpression as AssignmentExpression, types_AssignmentOperator as AssignmentOperator, types_AssignmentPattern as AssignmentPattern, types_AssignmentProperty as AssignmentProperty, types_AwaitExpression as AwaitExpression, types_BaseCallExpression as BaseCallExpression, types_BaseDeclaration as BaseDeclaration, types_BaseExpression as BaseExpression, types_BaseForXStatement as BaseForXStatement, types_BaseFunction as BaseFunction, types_BaseModuleDeclaration as BaseModuleDeclaration, types_BaseModuleSpecifier as BaseModuleSpecifier, types_BaseNode as BaseNode, types_BaseNodeWithoutComments as BaseNodeWithoutComments, types_BasePattern as BasePattern, types_BaseStatement as BaseStatement, types_BigIntLiteral as BigIntLiteral, types_BinaryExpression as BinaryExpression, types_BinaryOperator as BinaryOperator, types_BlockStatement as BlockStatement, types_BreakStatement as BreakStatement, types_CallExpression as CallExpression, types_CatchClause as CatchClause, types_ChainElement as ChainElement, types_ChainExpression as ChainExpression, types_Comment as Comment, types_ConditionalExpression as ConditionalExpression, types_ContinueStatement as ContinueStatement, types_DebuggerStatement as DebuggerStatement, types_Declaration as Declaration, types_Directive as Directive, types_DoWhileStatement as DoWhileStatement, types_EmptyStatement as EmptyStatement, types_ExportDefaultDeclaration as ExportDefaultDeclaration, types_ExportNamedDeclaration as ExportNamedDeclaration, types_ExportSpecifier as ExportSpecifier, types_Expression as Expression, types_ExpressionStatement as ExpressionStatement, types_ForInStatement as ForInStatement, types_ForOfStatement as ForOfStatement, types_ForStatement as ForStatement, types_Function as Function, types_FunctionDeclaration as FunctionDeclaration, types_FunctionExpression as FunctionExpression, types_Identifier as Identifier, types_IfStatement as IfStatement, types_ImportDeclaration as ImportDeclaration, types_ImportDefaultSpecifier as ImportDefaultSpecifier, types_ImportExpression as ImportExpression, types_ImportNamespaceSpecifier as ImportNamespaceSpecifier, types_ImportSpecifier as ImportSpecifier, types_JSXAttribute as JSXAttribute, types_JSXChild as JSXChild, types_JSXClosingElement as JSXClosingElement, types_JSXClosingFragment as JSXClosingFragment, types_JSXElement as JSXElement, types_JSXEmptyExpression as JSXEmptyExpression, types_JSXExpressionContainer as JSXExpressionContainer, types_JSXFragment as JSXFragment, types_JSXIdentifier as JSXIdentifier, types_JSXMemberExpression as JSXMemberExpression, types_JSXNamespacedName as JSXNamespacedName, types_JSXOpeningElement as JSXOpeningElement, types_JSXOpeningFragment as JSXOpeningFragment, types_JSXSpreadAttribute as JSXSpreadAttribute, types_JSXSpreadChild as JSXSpreadChild, types_JSXTagName as JSXTagName, types_JSXText as JSXText, types_JsonExpression as JsonExpression, types_LabeledStatement as LabeledStatement, types_Literal as Literal, types_LogicalExpression as LogicalExpression, types_LogicalOperator as LogicalOperator, types_MaybeNamedFunctionDeclaration as MaybeNamedFunctionDeclaration, types_MemberExpression as MemberExpression, types_MetaProperty as MetaProperty, types_ModuleDeclaration as ModuleDeclaration, types_ModuleSpecifier as ModuleSpecifier, types_Node as Node, types_NodeMap as NodeMap, types_ObjectExpression as ObjectExpression, types_ObjectPattern as ObjectPattern, types_Pattern as Pattern, types_Placeholder as Placeholder, types_Position as Position, types_Program as Program, types_Property as Property, types_RegExpLiteral as RegExpLiteral, types_RestElement as RestElement, types_ReturnStatement as ReturnStatement, types_SequenceExpression as SequenceExpression, types_SimpleArrayExpression as SimpleArrayExpression, types_SimpleArrayPattern as SimpleArrayPattern, types_SimpleArrowFunctionExpression as SimpleArrowFunctionExpression, types_SimpleAssignmentExpression as SimpleAssignmentExpression, types_SimpleAssignmentPattern as SimpleAssignmentPattern, types_SimpleAssignmentProperty as SimpleAssignmentProperty, types_SimpleAwaitExpression as SimpleAwaitExpression, types_SimpleBaseCallExpression as SimpleBaseCallExpression, types_SimpleBaseDeclaration as SimpleBaseDeclaration, types_SimpleBaseExpression as SimpleBaseExpression, types_SimpleBaseForXStatement as SimpleBaseForXStatement, types_SimpleBaseFunction as SimpleBaseFunction, types_SimpleBaseNode as SimpleBaseNode, types_SimpleBaseNodeWithoutComments as SimpleBaseNodeWithoutComments, types_SimpleBasePattern as SimpleBasePattern, types_SimpleBaseStatement as SimpleBaseStatement, types_SimpleBigIntLiteral as SimpleBigIntLiteral, types_SimpleBinaryExpression as SimpleBinaryExpression, types_SimpleBlockStatement as SimpleBlockStatement, types_SimpleBreakStatement as SimpleBreakStatement, types_SimpleCallExpression as SimpleCallExpression, types_SimpleCatchClause as SimpleCatchClause, types_SimpleChainExpression as SimpleChainExpression, types_SimpleComment as SimpleComment, types_SimpleConditionalExpression as SimpleConditionalExpression, types_SimpleContinueStatement as SimpleContinueStatement, types_SimpleDoWhileStatement as SimpleDoWhileStatement, types_SimpleEmptyStatement as SimpleEmptyStatement, types_SimpleExpressionStatement as SimpleExpressionStatement, types_SimpleForInStatement as SimpleForInStatement, types_SimpleForOfStatement as SimpleForOfStatement, types_SimpleForStatement as SimpleForStatement, types_SimpleFunctionDeclaration as SimpleFunctionDeclaration, types_SimpleFunctionExpression as SimpleFunctionExpression, types_SimpleIdentifier as SimpleIdentifier, types_SimpleIfStatement as SimpleIfStatement, types_SimpleJsonExpression as SimpleJsonExpression, types_SimpleLabeledStatement as SimpleLabeledStatement, types_SimpleLiteral as SimpleLiteral, types_SimpleLogicalExpression as SimpleLogicalExpression, types_SimpleMemberExpression as SimpleMemberExpression, types_SimpleNode as SimpleNode, types_SimpleObjectExpression as SimpleObjectExpression, types_SimpleObjectPattern as SimpleObjectPattern, types_SimplePosition as SimplePosition, types_SimpleProgram as SimpleProgram, types_SimpleProperty as SimpleProperty, types_SimpleRegExpLiteral as SimpleRegExpLiteral, types_SimpleRestElement as SimpleRestElement, types_SimpleReturnStatement as SimpleReturnStatement, types_SimpleSequenceExpression as SimpleSequenceExpression, types_SimpleSimpleCallExpression as SimpleSimpleCallExpression, types_SimpleSimpleLiteral as SimpleSimpleLiteral, types_SimpleSourceLocation as SimpleSourceLocation, types_SimpleSpreadElement as SimpleSpreadElement, types_SimpleSwitchCase as SimpleSwitchCase, types_SimpleSwitchStatement as SimpleSwitchStatement, types_SimpleTemplateElement as SimpleTemplateElement, types_SimpleTemplateLiteral as SimpleTemplateLiteral, types_SimpleThisExpression as SimpleThisExpression, types_SimpleThrowStatement as SimpleThrowStatement, types_SimpleTryStatement as SimpleTryStatement, types_SimpleUnaryExpression as SimpleUnaryExpression, types_SimpleUpdateExpression as SimpleUpdateExpression, types_SimpleVariableDeclaration as SimpleVariableDeclaration, types_SimpleVariableDeclarator as SimpleVariableDeclarator, types_SimpleWhileStatement as SimpleWhileStatement, types_SourceLocation as SourceLocation, types_SpreadElement as SpreadElement, types_Statement as Statement, types_SwitchCase as SwitchCase, types_SwitchStatement as SwitchStatement, types_TSArrayType as TSArrayType, types_TSCallSignatureDeclaration as TSCallSignatureDeclaration, types_TSConditionalType as TSConditionalType, types_TSFunctionType as TSFunctionType, types_TSIndexSignature as TSIndexSignature, types_TSIndexedAccessType as TSIndexedAccessType, types_TSInferType as TSInferType, types_TSIntersectionType as TSIntersectionType, types_TSKeywordType as TSKeywordType, types_TSLite as TSLite, types_TSLiteMarker as TSLiteMarker, types_TSLiteralType as TSLiteralType, types_TSMappedType as TSMappedType, types_TSPropertySignature as TSPropertySignature, types_TSTupleType as TSTupleType, types_TSType as TSType, types_TSTypeLiteral as TSTypeLiteral, types_TSTypeMember as TSTypeMember, types_TSTypeOperator as TSTypeOperator, types_TSTypeParameter as TSTypeParameter, types_TSTypePredicate as TSTypePredicate, types_TSTypeQuery as TSTypeQuery, types_TSTypeReference as TSTypeReference, types_TSUnionType as TSUnionType, types_TaggedTemplateExpression as TaggedTemplateExpression, types_TemplateElement as TemplateElement, types_TemplateLiteral as TemplateLiteral, types_ThisExpression as ThisExpression, types_ThrowStatement as ThrowStatement, types_TryStatement as TryStatement, types_UnaryExpression as UnaryExpression, types_UnaryOperator as UnaryOperator, types_UpdateExpression as UpdateExpression, types_UpdateOperator as UpdateOperator, types_VariableDeclaration as VariableDeclaration, types_VariableDeclarator as VariableDeclarator, types_WhileStatement as WhileStatement };
|
|
957
965
|
}
|
|
958
966
|
|
|
959
967
|
/**
|
|
@@ -1069,4 +1077,4 @@ declare const jsxElement: (openingElement: JSXOpeningElement, children?: JSXChil
|
|
|
1069
1077
|
declare const jsxFragment: (children?: JSXChild[], openingFragment?: JSXOpeningFragment, closingFragment?: JSXClosingFragment) => JSXFragment;
|
|
1070
1078
|
declare const json: (body: TSLite) => JsonExpression;
|
|
1071
1079
|
|
|
1072
|
-
export { type ModuleDeclaration as $, type ArrayExpression as A, type BaseNode as B, type CatchClause as C, type DoWhileStatement as D, type EmptyStatement as E, type ForInStatement as F, type TemplateLiteral as G, type ThrowStatement as H, type Identifier as I, type JsonExpression as J, type TryStatement as K, type Literal as L, type MemberExpression as M, type Node as N, type ObjectExpression as O, type Program as P, type UpdateExpression as Q, type ReturnStatement as R, type SimpleCallExpression as S, type TemplateElement as T, type UnaryExpression as U, type VariableDeclaration as V, type VariableDeclarator as W, type WhileStatement as X, type SpreadElement as Y, type RestElement as Z, type Directive as _, type ArrayPattern as a, type SimpleBaseForXStatement as a$, type JSXElement as a0, type JSXFragment as a1, type CallExpression as a2, type AssignmentOperator as a3, type AssignmentPattern as a4, type BaseCallExpression as a5, type BaseDeclaration as a6, type BaseExpression as a7, type BaseForXStatement as a8, type BaseFunction as a9, type JSXOpeningElement as aA, type JSXOpeningFragment as aB, type JSXSpreadAttribute as aC, type JSXSpreadChild as aD, type JSXTagName as aE, type JSXText as aF, type LabeledStatement as aG, type LogicalOperator as aH, type MaybeNamedFunctionDeclaration as aI, type MetaProperty as aJ, type ModuleSpecifier as aK, type NodeMap as aL, type Pattern as aM, type Placeholder as aN, type Position as aO, type RegExpLiteral as aP, type SequenceExpression as aQ, type SimpleArrayExpression as aR, type SimpleArrayPattern as aS, type SimpleArrowFunctionExpression as aT, type SimpleAssignmentExpression as aU, type SimpleAssignmentPattern as aV, type SimpleAssignmentProperty as aW, type SimpleAwaitExpression as aX, type SimpleBaseCallExpression as aY, type SimpleBaseDeclaration as aZ, type SimpleBaseExpression as a_, type BaseModuleDeclaration as aa, type BaseModuleSpecifier as ab, type BaseNodeWithoutComments as ac, type BasePattern as ad, type BaseStatement as ae, type BigIntLiteral as af, type BinaryOperator as ag, type ChainElement as ah, type Comment as ai, type DebuggerStatement as aj, type Declaration as ak, type ExportDefaultDeclaration as al, type ExportNamedDeclaration as am, type ExportSpecifier as an, type Expression as ao, type Function as ap, type ImportExpression as aq, type JSXAttribute as ar, type JSXChild as as, type JSXClosingElement as at, type JSXClosingFragment as au, type JSXEmptyExpression as av, type JSXExpressionContainer as aw, type JSXIdentifier as ax, type JSXMemberExpression as ay, type JSXNamespacedName as az, type ArrowFunctionExpression as b, type TSInferType as b$, type SimpleBaseFunction as b0, type SimpleBaseNode as b1, type SimpleBaseNodeWithoutComments as b2, type SimpleBasePattern as b3, type SimpleBaseStatement as b4, type SimpleBigIntLiteral as b5, type SimpleBinaryExpression as b6, type SimpleBlockStatement as b7, type SimpleBreakStatement as b8, type SimpleCatchClause as b9, type SimpleRestElement as bA, type SimpleReturnStatement as bB, type SimpleSequenceExpression as bC, type SimpleSimpleCallExpression as bD, type SimpleSimpleLiteral as bE, type SimpleSourceLocation as bF, type SimpleSpreadElement as bG, type SimpleSwitchCase as bH, type SimpleSwitchStatement as bI, type SimpleTemplateElement as bJ, type SimpleTemplateLiteral as bK, type SimpleThisExpression as bL, type SimpleThrowStatement as bM, type SimpleTryStatement as bN, type SimpleUnaryExpression as bO, type SimpleUpdateExpression as bP, type SimpleVariableDeclaration as bQ, type SimpleVariableDeclarator as bR, type SimpleWhileStatement as bS, type SourceLocation as bT, type Statement as bU, type TSArrayType as bV, type TSCallSignatureDeclaration as bW, type TSConditionalType as bX, type TSFunctionType as bY, type TSIndexSignature as bZ, type TSIndexedAccessType as b_, type SimpleChainExpression as ba, type SimpleComment as bb, type SimpleConditionalExpression as bc, type SimpleContinueStatement as bd, type SimpleDoWhileStatement as be, type SimpleEmptyStatement as bf, type SimpleExpressionStatement as bg, type SimpleForInStatement as bh, type SimpleForOfStatement as bi, type SimpleForStatement as bj, type SimpleFunctionDeclaration as bk, type SimpleFunctionExpression as bl, type SimpleIdentifier as bm, type SimpleIfStatement as bn, type SimpleJsonExpression as bo, type SimpleLabeledStatement as bp, type SimpleLiteral as bq, type SimpleLogicalExpression as br, type SimpleMemberExpression as bs, type SimpleNode as bt, type SimpleObjectExpression as bu, type SimpleObjectPattern as bv, type SimplePosition as bw, type SimpleProgram as bx, type SimpleProperty as by, type SimpleRegExpLiteral as bz, type AssignmentExpression as c,
|
|
1080
|
+
export { type ModuleDeclaration as $, type ArrayExpression as A, type BaseNode as B, type CatchClause as C, type DoWhileStatement as D, type EmptyStatement as E, type ForInStatement as F, type TemplateLiteral as G, type ThrowStatement as H, type Identifier as I, type JsonExpression as J, type TryStatement as K, type Literal as L, type MemberExpression as M, type Node as N, type ObjectExpression as O, type Program as P, type UpdateExpression as Q, type ReturnStatement as R, type SimpleCallExpression as S, type TemplateElement as T, type UnaryExpression as U, type VariableDeclaration as V, type VariableDeclarator as W, type WhileStatement as X, type SpreadElement as Y, type RestElement as Z, type Directive as _, type ArrayPattern as a, type SimpleBaseForXStatement as a$, type JSXElement as a0, type JSXFragment as a1, type CallExpression as a2, type AssignmentOperator as a3, type AssignmentPattern as a4, type BaseCallExpression as a5, type BaseDeclaration as a6, type BaseExpression as a7, type BaseForXStatement as a8, type BaseFunction as a9, type JSXOpeningElement as aA, type JSXOpeningFragment as aB, type JSXSpreadAttribute as aC, type JSXSpreadChild as aD, type JSXTagName as aE, type JSXText as aF, type LabeledStatement as aG, type LogicalOperator as aH, type MaybeNamedFunctionDeclaration as aI, type MetaProperty as aJ, type ModuleSpecifier as aK, type NodeMap as aL, type Pattern as aM, type Placeholder as aN, type Position as aO, type RegExpLiteral as aP, type SequenceExpression as aQ, type SimpleArrayExpression as aR, type SimpleArrayPattern as aS, type SimpleArrowFunctionExpression as aT, type SimpleAssignmentExpression as aU, type SimpleAssignmentPattern as aV, type SimpleAssignmentProperty as aW, type SimpleAwaitExpression as aX, type SimpleBaseCallExpression as aY, type SimpleBaseDeclaration as aZ, type SimpleBaseExpression as a_, type BaseModuleDeclaration as aa, type BaseModuleSpecifier as ab, type BaseNodeWithoutComments as ac, type BasePattern as ad, type BaseStatement as ae, type BigIntLiteral as af, type BinaryOperator as ag, type ChainElement as ah, type Comment as ai, type DebuggerStatement as aj, type Declaration as ak, type ExportDefaultDeclaration as al, type ExportNamedDeclaration as am, type ExportSpecifier as an, type Expression as ao, type Function as ap, type ImportExpression as aq, type JSXAttribute as ar, type JSXChild as as, type JSXClosingElement as at, type JSXClosingFragment as au, type JSXEmptyExpression as av, type JSXExpressionContainer as aw, type JSXIdentifier as ax, type JSXMemberExpression as ay, type JSXNamespacedName as az, type ArrowFunctionExpression as b, type TSInferType as b$, type SimpleBaseFunction as b0, type SimpleBaseNode as b1, type SimpleBaseNodeWithoutComments as b2, type SimpleBasePattern as b3, type SimpleBaseStatement as b4, type SimpleBigIntLiteral as b5, type SimpleBinaryExpression as b6, type SimpleBlockStatement as b7, type SimpleBreakStatement as b8, type SimpleCatchClause as b9, type SimpleRestElement as bA, type SimpleReturnStatement as bB, type SimpleSequenceExpression as bC, type SimpleSimpleCallExpression as bD, type SimpleSimpleLiteral as bE, type SimpleSourceLocation as bF, type SimpleSpreadElement as bG, type SimpleSwitchCase as bH, type SimpleSwitchStatement as bI, type SimpleTemplateElement as bJ, type SimpleTemplateLiteral as bK, type SimpleThisExpression as bL, type SimpleThrowStatement as bM, type SimpleTryStatement as bN, type SimpleUnaryExpression as bO, type SimpleUpdateExpression as bP, type SimpleVariableDeclaration as bQ, type SimpleVariableDeclarator as bR, type SimpleWhileStatement as bS, type SourceLocation as bT, type Statement as bU, type TSArrayType as bV, type TSCallSignatureDeclaration as bW, type TSConditionalType as bX, type TSFunctionType as bY, type TSIndexSignature as bZ, type TSIndexedAccessType as b_, type SimpleChainExpression as ba, type SimpleComment as bb, type SimpleConditionalExpression as bc, type SimpleContinueStatement as bd, type SimpleDoWhileStatement as be, type SimpleEmptyStatement as bf, type SimpleExpressionStatement as bg, type SimpleForInStatement as bh, type SimpleForOfStatement as bi, type SimpleForStatement as bj, type SimpleFunctionDeclaration as bk, type SimpleFunctionExpression as bl, type SimpleIdentifier as bm, type SimpleIfStatement as bn, type SimpleJsonExpression as bo, type SimpleLabeledStatement as bp, type SimpleLiteral as bq, type SimpleLogicalExpression as br, type SimpleMemberExpression as bs, type SimpleNode as bt, type SimpleObjectExpression as bu, type SimpleObjectPattern as bv, type SimplePosition as bw, type SimpleProgram as bx, type SimpleProperty as by, type SimpleRegExpLiteral as bz, type AssignmentExpression as c, jsxExpressionContainer as c$, type TSIntersectionType as c0, type TSKeywordType as c1, type TSLite as c2, type TSLiteMarker as c3, type TSLiteralType as c4, type TSMappedType as c5, type TSPropertySignature as c6, type TSTupleType as c7, type TSType as c8, type TSTypeLiteral as c9, callExpression as cA, catchClause as cB, chainExpression as cC, conditionalExpression as cD, continueStatement as cE, doWhileStatement as cF, emptyStatement as cG, exportDefaultDeclaration as cH, exportNamedDeclaration as cI, exportSpecifier as cJ, expressionStatement as cK, forInStatement as cL, forOfStatement as cM, forStatement as cN, functionDeclaration as cO, functionExpression as cP, identifier as cQ, ifStatement as cR, importDeclaration as cS, importDefaultSpecifier as cT, importNamespaceSpecifier as cU, importSpecifier as cV, jsxAttribute as cW, jsxClosingElement as cX, jsxClosingFragment as cY, jsxElement as cZ, jsxEmptyExpression as c_, type TSTypeMember as ca, type TSTypeOperator as cb, type TSTypeParameter as cc, type TSTypePredicate as cd, type TSTypeQuery as ce, type TSTypeReference as cf, type TSUnionType as cg, type TaggedTemplateExpression as ch, type ThisExpression as ci, type UnaryOperator as cj, type UpdateOperator as ck, expr as cl, fromExprMarker as cm, json as cn, jsonExpression as co, types as cp, arrayExpression as cq, arrayPattern as cr, arrowFunctionExpression as cs, assignmentExpression as ct, assignmentPattern as cu, assignmentProperty as cv, awaitExpression as cw, binaryExpression as cx, blockStatement as cy, breakStatement as cz, type AssignmentProperty as d, jsxFragment as d0, jsxIdentifier as d1, jsxMemberExpression as d2, jsxNamespacedName as d3, jsxOpeningElement as d4, jsxOpeningFragment as d5, jsxSpreadAttribute as d6, jsxSpreadChild as d7, jsxText as d8, literal as d9, logicalExpression as da, memberExpression as db, objectExpression as dc, objectPattern as dd, placeholder as de, program as df, property as dg, restElement as dh, returnStatement as di, spreadElement as dj, switchCase as dk, switchStatement as dl, templateElement as dm, templateLiteral as dn, throwStatement as dp, tryStatement as dq, unaryExpression as dr, updateExpression as ds, variableDeclaration as dt, variableDeclarator as du, whileStatement as dv, type AwaitExpression as e, type BinaryExpression as f, type BlockStatement as g, type BreakStatement as h, type ChainExpression as i, type ConditionalExpression as j, type ContinueStatement as k, type ExpressionStatement as l, type ForOfStatement as m, type ForStatement as n, type FunctionDeclaration as o, type FunctionExpression as p, type IfStatement as q, type ImportDeclaration as r, type ImportDefaultSpecifier as s, type ImportNamespaceSpecifier as t, type ImportSpecifier as u, type LogicalExpression as v, type ObjectPattern as w, type Property as x, type SwitchCase as y, type SwitchStatement as z };
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { B as BaseNode, A as ArrayExpression, N as Node, a as ArrayPattern, b as ArrowFunctionExpression, c as AssignmentExpression, d as AssignmentProperty, e as AwaitExpression, f as BinaryExpression, g as BlockStatement, h as BreakStatement, S as SimpleCallExpression, C as CatchClause, i as ChainExpression, j as ConditionalExpression, k as ContinueStatement, D as DoWhileStatement, E as EmptyStatement, l as ExpressionStatement, F as ForInStatement, m as ForOfStatement, n as ForStatement, o as FunctionDeclaration, p as FunctionExpression, I as Identifier, q as IfStatement, r as ImportDeclaration, s as ImportDefaultSpecifier, t as ImportNamespaceSpecifier, u as ImportSpecifier, J as JsonExpression, L as Literal, v as LogicalExpression, M as MemberExpression, O as ObjectExpression, w as ObjectPattern, P as Program, x as Property, R as ReturnStatement, y as SwitchCase, z as SwitchStatement, T as TemplateElement, G as TemplateLiteral, H as ThrowStatement, K as TryStatement, U as UnaryExpression, Q as UpdateExpression, V as VariableDeclaration, W as VariableDeclarator, X as WhileStatement, Y as SpreadElement, Z as RestElement, _ as Directive, $ as ModuleDeclaration, a0 as JSXElement, a1 as JSXFragment, a2 as CallExpression } from './index-
|
|
2
|
-
export { a3 as AssignmentOperator, a4 as AssignmentPattern, a5 as BaseCallExpression, a6 as BaseDeclaration, a7 as BaseExpression, a8 as BaseForXStatement, a9 as BaseFunction, aa as BaseModuleDeclaration, ab as BaseModuleSpecifier, ac as BaseNodeWithoutComments, ad as BasePattern, ae as BaseStatement, af as BigIntLiteral, ag as BinaryOperator, ah as ChainElement, ai as Comment, aj as DebuggerStatement, ak as Declaration, al as ExportDefaultDeclaration, am as ExportNamedDeclaration, an as ExportSpecifier, ao as Expression, ap as Function, aq as ImportExpression, ar as JSXAttribute, as as JSXChild, at as JSXClosingElement, au as JSXClosingFragment, av as JSXEmptyExpression, aw as JSXExpressionContainer, ax as JSXIdentifier, ay as JSXMemberExpression, az as JSXNamespacedName, aA as JSXOpeningElement, aB as JSXOpeningFragment, aC as JSXSpreadAttribute, aD as JSXSpreadChild, aE as JSXTagName, aF as JSXText, aG as LabeledStatement, aH as LogicalOperator, aI as MaybeNamedFunctionDeclaration, aJ as MetaProperty, aK as ModuleSpecifier, aL as NodeMap, aM as Pattern, aN as Placeholder, aO as Position, aP as RegExpLiteral, aQ as SequenceExpression, aR as SimpleArrayExpression, aS as SimpleArrayPattern, aT as SimpleArrowFunctionExpression, aU as SimpleAssignmentExpression, aV as SimpleAssignmentPattern, aW as SimpleAssignmentProperty, aX as SimpleAwaitExpression, aY as SimpleBaseCallExpression, aZ as SimpleBaseDeclaration, a_ as SimpleBaseExpression, a$ as SimpleBaseForXStatement, b0 as SimpleBaseFunction, b1 as SimpleBaseNode, b2 as SimpleBaseNodeWithoutComments, b3 as SimpleBasePattern, b4 as SimpleBaseStatement, b5 as SimpleBigIntLiteral, b6 as SimpleBinaryExpression, b7 as SimpleBlockStatement, b8 as SimpleBreakStatement, b9 as SimpleCatchClause, ba as SimpleChainExpression, bb as SimpleComment, bc as SimpleConditionalExpression, bd as SimpleContinueStatement, be as SimpleDoWhileStatement, bf as SimpleEmptyStatement, bg as SimpleExpressionStatement, bh as SimpleForInStatement, bi as SimpleForOfStatement, bj as SimpleForStatement, bk as SimpleFunctionDeclaration, bl as SimpleFunctionExpression, bm as SimpleIdentifier, bn as SimpleIfStatement, bo as SimpleJsonExpression, bp as SimpleLabeledStatement, bq as SimpleLiteral, br as SimpleLogicalExpression, bs as SimpleMemberExpression, bt as SimpleNode, bu as SimpleObjectExpression, bv as SimpleObjectPattern, bw as SimplePosition, bx as SimpleProgram, by as SimpleProperty, bz as SimpleRegExpLiteral, bA as SimpleRestElement, bB as SimpleReturnStatement, bC as SimpleSequenceExpression, bD as SimpleSimpleCallExpression, bE as SimpleSimpleLiteral, bF as SimpleSourceLocation, bG as SimpleSpreadElement, bH as SimpleSwitchCase, bI as SimpleSwitchStatement, bJ as SimpleTemplateElement, bK as SimpleTemplateLiteral, bL as SimpleThisExpression, bM as SimpleThrowStatement, bN as SimpleTryStatement, bO as SimpleUnaryExpression, bP as SimpleUpdateExpression, bQ as SimpleVariableDeclaration, bR as SimpleVariableDeclarator, bS as SimpleWhileStatement, bT as SourceLocation, bU as Statement, bV as TSArrayType, bW as TSCallSignatureDeclaration, bX as TSConditionalType, bY as TSFunctionType, bZ as TSIndexSignature, b_ as TSIndexedAccessType, b$ as TSInferType, c0 as TSIntersectionType, c1 as TSKeywordType, c2 as TSLite, c3 as TSLiteMarker, c4 as TSLiteralType, c5 as TSMappedType, c6 as TSPropertySignature, c7 as TSTupleType, c8 as TSType, c9 as TSTypeLiteral, ca as TSTypeMember, cb as TSTypeOperator, cc as TSTypeParameter, cd as
|
|
1
|
+
import { B as BaseNode, A as ArrayExpression, N as Node, a as ArrayPattern, b as ArrowFunctionExpression, c as AssignmentExpression, d as AssignmentProperty, e as AwaitExpression, f as BinaryExpression, g as BlockStatement, h as BreakStatement, S as SimpleCallExpression, C as CatchClause, i as ChainExpression, j as ConditionalExpression, k as ContinueStatement, D as DoWhileStatement, E as EmptyStatement, l as ExpressionStatement, F as ForInStatement, m as ForOfStatement, n as ForStatement, o as FunctionDeclaration, p as FunctionExpression, I as Identifier, q as IfStatement, r as ImportDeclaration, s as ImportDefaultSpecifier, t as ImportNamespaceSpecifier, u as ImportSpecifier, J as JsonExpression, L as Literal, v as LogicalExpression, M as MemberExpression, O as ObjectExpression, w as ObjectPattern, P as Program, x as Property, R as ReturnStatement, y as SwitchCase, z as SwitchStatement, T as TemplateElement, G as TemplateLiteral, H as ThrowStatement, K as TryStatement, U as UnaryExpression, Q as UpdateExpression, V as VariableDeclaration, W as VariableDeclarator, X as WhileStatement, Y as SpreadElement, Z as RestElement, _ as Directive, $ as ModuleDeclaration, a0 as JSXElement, a1 as JSXFragment, a2 as CallExpression } from './index-BNiyDL0x.cjs';
|
|
2
|
+
export { a3 as AssignmentOperator, a4 as AssignmentPattern, a5 as BaseCallExpression, a6 as BaseDeclaration, a7 as BaseExpression, a8 as BaseForXStatement, a9 as BaseFunction, aa as BaseModuleDeclaration, ab as BaseModuleSpecifier, ac as BaseNodeWithoutComments, ad as BasePattern, ae as BaseStatement, af as BigIntLiteral, ag as BinaryOperator, ah as ChainElement, ai as Comment, aj as DebuggerStatement, ak as Declaration, al as ExportDefaultDeclaration, am as ExportNamedDeclaration, an as ExportSpecifier, ao as Expression, ap as Function, aq as ImportExpression, ar as JSXAttribute, as as JSXChild, at as JSXClosingElement, au as JSXClosingFragment, av as JSXEmptyExpression, aw as JSXExpressionContainer, ax as JSXIdentifier, ay as JSXMemberExpression, az as JSXNamespacedName, aA as JSXOpeningElement, aB as JSXOpeningFragment, aC as JSXSpreadAttribute, aD as JSXSpreadChild, aE as JSXTagName, aF as JSXText, aG as LabeledStatement, aH as LogicalOperator, aI as MaybeNamedFunctionDeclaration, aJ as MetaProperty, aK as ModuleSpecifier, aL as NodeMap, aM as Pattern, aN as Placeholder, aO as Position, aP as RegExpLiteral, aQ as SequenceExpression, aR as SimpleArrayExpression, aS as SimpleArrayPattern, aT as SimpleArrowFunctionExpression, aU as SimpleAssignmentExpression, aV as SimpleAssignmentPattern, aW as SimpleAssignmentProperty, aX as SimpleAwaitExpression, aY as SimpleBaseCallExpression, aZ as SimpleBaseDeclaration, a_ as SimpleBaseExpression, a$ as SimpleBaseForXStatement, b0 as SimpleBaseFunction, b1 as SimpleBaseNode, b2 as SimpleBaseNodeWithoutComments, b3 as SimpleBasePattern, b4 as SimpleBaseStatement, b5 as SimpleBigIntLiteral, b6 as SimpleBinaryExpression, b7 as SimpleBlockStatement, b8 as SimpleBreakStatement, b9 as SimpleCatchClause, ba as SimpleChainExpression, bb as SimpleComment, bc as SimpleConditionalExpression, bd as SimpleContinueStatement, be as SimpleDoWhileStatement, bf as SimpleEmptyStatement, bg as SimpleExpressionStatement, bh as SimpleForInStatement, bi as SimpleForOfStatement, bj as SimpleForStatement, bk as SimpleFunctionDeclaration, bl as SimpleFunctionExpression, bm as SimpleIdentifier, bn as SimpleIfStatement, bo as SimpleJsonExpression, bp as SimpleLabeledStatement, bq as SimpleLiteral, br as SimpleLogicalExpression, bs as SimpleMemberExpression, bt as SimpleNode, bu as SimpleObjectExpression, bv as SimpleObjectPattern, bw as SimplePosition, bx as SimpleProgram, by as SimpleProperty, bz as SimpleRegExpLiteral, bA as SimpleRestElement, bB as SimpleReturnStatement, bC as SimpleSequenceExpression, bD as SimpleSimpleCallExpression, bE as SimpleSimpleLiteral, bF as SimpleSourceLocation, bG as SimpleSpreadElement, bH as SimpleSwitchCase, bI as SimpleSwitchStatement, bJ as SimpleTemplateElement, bK as SimpleTemplateLiteral, bL as SimpleThisExpression, bM as SimpleThrowStatement, bN as SimpleTryStatement, bO as SimpleUnaryExpression, bP as SimpleUpdateExpression, bQ as SimpleVariableDeclaration, bR as SimpleVariableDeclarator, bS as SimpleWhileStatement, bT as SourceLocation, bU as Statement, bV as TSArrayType, bW as TSCallSignatureDeclaration, bX as TSConditionalType, bY as TSFunctionType, bZ as TSIndexSignature, b_ as TSIndexedAccessType, b$ as TSInferType, c0 as TSIntersectionType, c1 as TSKeywordType, c2 as TSLite, c3 as TSLiteMarker, c4 as TSLiteralType, c5 as TSMappedType, c6 as TSPropertySignature, c7 as TSTupleType, c8 as TSType, c9 as TSTypeLiteral, ca as TSTypeMember, cb as TSTypeOperator, cc as TSTypeParameter, cd as TSTypePredicate, ce as TSTypeQuery, cf as TSTypeReference, cg as TSUnionType, ch as TaggedTemplateExpression, ci as ThisExpression, cj as UnaryOperator, ck as UpdateOperator, cl as expr, cm as fromExprMarker, cn as json, co as jsonExpression, cp as types } from './index-BNiyDL0x.cjs';
|
|
3
3
|
|
|
4
4
|
/** Erro lançado pelo `@tslite/core`. */
|
|
5
5
|
type CoreErrorCode = "invalid-expression-entry" | "missing-node-type" | "unknown-node-type";
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { B as BaseNode, A as ArrayExpression, N as Node, a as ArrayPattern, b as ArrowFunctionExpression, c as AssignmentExpression, d as AssignmentProperty, e as AwaitExpression, f as BinaryExpression, g as BlockStatement, h as BreakStatement, S as SimpleCallExpression, C as CatchClause, i as ChainExpression, j as ConditionalExpression, k as ContinueStatement, D as DoWhileStatement, E as EmptyStatement, l as ExpressionStatement, F as ForInStatement, m as ForOfStatement, n as ForStatement, o as FunctionDeclaration, p as FunctionExpression, I as Identifier, q as IfStatement, r as ImportDeclaration, s as ImportDefaultSpecifier, t as ImportNamespaceSpecifier, u as ImportSpecifier, J as JsonExpression, L as Literal, v as LogicalExpression, M as MemberExpression, O as ObjectExpression, w as ObjectPattern, P as Program, x as Property, R as ReturnStatement, y as SwitchCase, z as SwitchStatement, T as TemplateElement, G as TemplateLiteral, H as ThrowStatement, K as TryStatement, U as UnaryExpression, Q as UpdateExpression, V as VariableDeclaration, W as VariableDeclarator, X as WhileStatement, Y as SpreadElement, Z as RestElement, _ as Directive, $ as ModuleDeclaration, a0 as JSXElement, a1 as JSXFragment, a2 as CallExpression } from './index-
|
|
2
|
-
export { a3 as AssignmentOperator, a4 as AssignmentPattern, a5 as BaseCallExpression, a6 as BaseDeclaration, a7 as BaseExpression, a8 as BaseForXStatement, a9 as BaseFunction, aa as BaseModuleDeclaration, ab as BaseModuleSpecifier, ac as BaseNodeWithoutComments, ad as BasePattern, ae as BaseStatement, af as BigIntLiteral, ag as BinaryOperator, ah as ChainElement, ai as Comment, aj as DebuggerStatement, ak as Declaration, al as ExportDefaultDeclaration, am as ExportNamedDeclaration, an as ExportSpecifier, ao as Expression, ap as Function, aq as ImportExpression, ar as JSXAttribute, as as JSXChild, at as JSXClosingElement, au as JSXClosingFragment, av as JSXEmptyExpression, aw as JSXExpressionContainer, ax as JSXIdentifier, ay as JSXMemberExpression, az as JSXNamespacedName, aA as JSXOpeningElement, aB as JSXOpeningFragment, aC as JSXSpreadAttribute, aD as JSXSpreadChild, aE as JSXTagName, aF as JSXText, aG as LabeledStatement, aH as LogicalOperator, aI as MaybeNamedFunctionDeclaration, aJ as MetaProperty, aK as ModuleSpecifier, aL as NodeMap, aM as Pattern, aN as Placeholder, aO as Position, aP as RegExpLiteral, aQ as SequenceExpression, aR as SimpleArrayExpression, aS as SimpleArrayPattern, aT as SimpleArrowFunctionExpression, aU as SimpleAssignmentExpression, aV as SimpleAssignmentPattern, aW as SimpleAssignmentProperty, aX as SimpleAwaitExpression, aY as SimpleBaseCallExpression, aZ as SimpleBaseDeclaration, a_ as SimpleBaseExpression, a$ as SimpleBaseForXStatement, b0 as SimpleBaseFunction, b1 as SimpleBaseNode, b2 as SimpleBaseNodeWithoutComments, b3 as SimpleBasePattern, b4 as SimpleBaseStatement, b5 as SimpleBigIntLiteral, b6 as SimpleBinaryExpression, b7 as SimpleBlockStatement, b8 as SimpleBreakStatement, b9 as SimpleCatchClause, ba as SimpleChainExpression, bb as SimpleComment, bc as SimpleConditionalExpression, bd as SimpleContinueStatement, be as SimpleDoWhileStatement, bf as SimpleEmptyStatement, bg as SimpleExpressionStatement, bh as SimpleForInStatement, bi as SimpleForOfStatement, bj as SimpleForStatement, bk as SimpleFunctionDeclaration, bl as SimpleFunctionExpression, bm as SimpleIdentifier, bn as SimpleIfStatement, bo as SimpleJsonExpression, bp as SimpleLabeledStatement, bq as SimpleLiteral, br as SimpleLogicalExpression, bs as SimpleMemberExpression, bt as SimpleNode, bu as SimpleObjectExpression, bv as SimpleObjectPattern, bw as SimplePosition, bx as SimpleProgram, by as SimpleProperty, bz as SimpleRegExpLiteral, bA as SimpleRestElement, bB as SimpleReturnStatement, bC as SimpleSequenceExpression, bD as SimpleSimpleCallExpression, bE as SimpleSimpleLiteral, bF as SimpleSourceLocation, bG as SimpleSpreadElement, bH as SimpleSwitchCase, bI as SimpleSwitchStatement, bJ as SimpleTemplateElement, bK as SimpleTemplateLiteral, bL as SimpleThisExpression, bM as SimpleThrowStatement, bN as SimpleTryStatement, bO as SimpleUnaryExpression, bP as SimpleUpdateExpression, bQ as SimpleVariableDeclaration, bR as SimpleVariableDeclarator, bS as SimpleWhileStatement, bT as SourceLocation, bU as Statement, bV as TSArrayType, bW as TSCallSignatureDeclaration, bX as TSConditionalType, bY as TSFunctionType, bZ as TSIndexSignature, b_ as TSIndexedAccessType, b$ as TSInferType, c0 as TSIntersectionType, c1 as TSKeywordType, c2 as TSLite, c3 as TSLiteMarker, c4 as TSLiteralType, c5 as TSMappedType, c6 as TSPropertySignature, c7 as TSTupleType, c8 as TSType, c9 as TSTypeLiteral, ca as TSTypeMember, cb as TSTypeOperator, cc as TSTypeParameter, cd as
|
|
1
|
+
import { B as BaseNode, A as ArrayExpression, N as Node, a as ArrayPattern, b as ArrowFunctionExpression, c as AssignmentExpression, d as AssignmentProperty, e as AwaitExpression, f as BinaryExpression, g as BlockStatement, h as BreakStatement, S as SimpleCallExpression, C as CatchClause, i as ChainExpression, j as ConditionalExpression, k as ContinueStatement, D as DoWhileStatement, E as EmptyStatement, l as ExpressionStatement, F as ForInStatement, m as ForOfStatement, n as ForStatement, o as FunctionDeclaration, p as FunctionExpression, I as Identifier, q as IfStatement, r as ImportDeclaration, s as ImportDefaultSpecifier, t as ImportNamespaceSpecifier, u as ImportSpecifier, J as JsonExpression, L as Literal, v as LogicalExpression, M as MemberExpression, O as ObjectExpression, w as ObjectPattern, P as Program, x as Property, R as ReturnStatement, y as SwitchCase, z as SwitchStatement, T as TemplateElement, G as TemplateLiteral, H as ThrowStatement, K as TryStatement, U as UnaryExpression, Q as UpdateExpression, V as VariableDeclaration, W as VariableDeclarator, X as WhileStatement, Y as SpreadElement, Z as RestElement, _ as Directive, $ as ModuleDeclaration, a0 as JSXElement, a1 as JSXFragment, a2 as CallExpression } from './index-BNiyDL0x.js';
|
|
2
|
+
export { a3 as AssignmentOperator, a4 as AssignmentPattern, a5 as BaseCallExpression, a6 as BaseDeclaration, a7 as BaseExpression, a8 as BaseForXStatement, a9 as BaseFunction, aa as BaseModuleDeclaration, ab as BaseModuleSpecifier, ac as BaseNodeWithoutComments, ad as BasePattern, ae as BaseStatement, af as BigIntLiteral, ag as BinaryOperator, ah as ChainElement, ai as Comment, aj as DebuggerStatement, ak as Declaration, al as ExportDefaultDeclaration, am as ExportNamedDeclaration, an as ExportSpecifier, ao as Expression, ap as Function, aq as ImportExpression, ar as JSXAttribute, as as JSXChild, at as JSXClosingElement, au as JSXClosingFragment, av as JSXEmptyExpression, aw as JSXExpressionContainer, ax as JSXIdentifier, ay as JSXMemberExpression, az as JSXNamespacedName, aA as JSXOpeningElement, aB as JSXOpeningFragment, aC as JSXSpreadAttribute, aD as JSXSpreadChild, aE as JSXTagName, aF as JSXText, aG as LabeledStatement, aH as LogicalOperator, aI as MaybeNamedFunctionDeclaration, aJ as MetaProperty, aK as ModuleSpecifier, aL as NodeMap, aM as Pattern, aN as Placeholder, aO as Position, aP as RegExpLiteral, aQ as SequenceExpression, aR as SimpleArrayExpression, aS as SimpleArrayPattern, aT as SimpleArrowFunctionExpression, aU as SimpleAssignmentExpression, aV as SimpleAssignmentPattern, aW as SimpleAssignmentProperty, aX as SimpleAwaitExpression, aY as SimpleBaseCallExpression, aZ as SimpleBaseDeclaration, a_ as SimpleBaseExpression, a$ as SimpleBaseForXStatement, b0 as SimpleBaseFunction, b1 as SimpleBaseNode, b2 as SimpleBaseNodeWithoutComments, b3 as SimpleBasePattern, b4 as SimpleBaseStatement, b5 as SimpleBigIntLiteral, b6 as SimpleBinaryExpression, b7 as SimpleBlockStatement, b8 as SimpleBreakStatement, b9 as SimpleCatchClause, ba as SimpleChainExpression, bb as SimpleComment, bc as SimpleConditionalExpression, bd as SimpleContinueStatement, be as SimpleDoWhileStatement, bf as SimpleEmptyStatement, bg as SimpleExpressionStatement, bh as SimpleForInStatement, bi as SimpleForOfStatement, bj as SimpleForStatement, bk as SimpleFunctionDeclaration, bl as SimpleFunctionExpression, bm as SimpleIdentifier, bn as SimpleIfStatement, bo as SimpleJsonExpression, bp as SimpleLabeledStatement, bq as SimpleLiteral, br as SimpleLogicalExpression, bs as SimpleMemberExpression, bt as SimpleNode, bu as SimpleObjectExpression, bv as SimpleObjectPattern, bw as SimplePosition, bx as SimpleProgram, by as SimpleProperty, bz as SimpleRegExpLiteral, bA as SimpleRestElement, bB as SimpleReturnStatement, bC as SimpleSequenceExpression, bD as SimpleSimpleCallExpression, bE as SimpleSimpleLiteral, bF as SimpleSourceLocation, bG as SimpleSpreadElement, bH as SimpleSwitchCase, bI as SimpleSwitchStatement, bJ as SimpleTemplateElement, bK as SimpleTemplateLiteral, bL as SimpleThisExpression, bM as SimpleThrowStatement, bN as SimpleTryStatement, bO as SimpleUnaryExpression, bP as SimpleUpdateExpression, bQ as SimpleVariableDeclaration, bR as SimpleVariableDeclarator, bS as SimpleWhileStatement, bT as SourceLocation, bU as Statement, bV as TSArrayType, bW as TSCallSignatureDeclaration, bX as TSConditionalType, bY as TSFunctionType, bZ as TSIndexSignature, b_ as TSIndexedAccessType, b$ as TSInferType, c0 as TSIntersectionType, c1 as TSKeywordType, c2 as TSLite, c3 as TSLiteMarker, c4 as TSLiteralType, c5 as TSMappedType, c6 as TSPropertySignature, c7 as TSTupleType, c8 as TSType, c9 as TSTypeLiteral, ca as TSTypeMember, cb as TSTypeOperator, cc as TSTypeParameter, cd as TSTypePredicate, ce as TSTypeQuery, cf as TSTypeReference, cg as TSUnionType, ch as TaggedTemplateExpression, ci as ThisExpression, cj as UnaryOperator, ck as UpdateOperator, cl as expr, cm as fromExprMarker, cn as json, co as jsonExpression, cp as types } from './index-BNiyDL0x.js';
|
|
3
3
|
|
|
4
4
|
/** Erro lançado pelo `@tslite/core`. */
|
|
5
5
|
type CoreErrorCode = "invalid-expression-entry" | "missing-node-type" | "unknown-node-type";
|