@mohsen-azimi/tsz-dev 0.1.1
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/LICENSE.txt +55 -0
- package/bundler/LICENSE.txt +55 -0
- package/bundler/package.json +26 -0
- package/bundler/tsz_wasm.d.ts +2104 -0
- package/bundler/tsz_wasm.js +9 -0
- package/bundler/tsz_wasm_bg.js +5173 -0
- package/bundler/tsz_wasm_bg.wasm +0 -0
- package/bundler/tsz_wasm_bg.wasm.d.ts +369 -0
- package/node/LICENSE.txt +55 -0
- package/node/package.json +20 -0
- package/node/tsz_wasm.d.ts +2104 -0
- package/node/tsz_wasm.js +5317 -0
- package/node/tsz_wasm_bg.wasm +0 -0
- package/node/tsz_wasm_bg.wasm.d.ts +369 -0
- package/package.json +22 -0
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/* @ts-self-types="./tsz_wasm.d.ts" */
|
|
2
|
+
|
|
3
|
+
import * as wasm from "./tsz_wasm_bg.wasm";
|
|
4
|
+
import { __wbg_set_wasm } from "./tsz_wasm_bg.js";
|
|
5
|
+
__wbg_set_wasm(wasm);
|
|
6
|
+
wasm.__wbindgen_start();
|
|
7
|
+
export {
|
|
8
|
+
Comparison, DiagnosticCategory, ModuleKind, NodeIndex, Parser, ScannerState, ScriptKind, ScriptTarget, SignatureKind, SyntaxKind, TextRange, TokenFlags, TsDiagnostic, TsLanguageService, TsProgram, TsSignature, TsSourceFile, TsSymbol, TsType, TsTypeChecker, WasmParallelChecker, WasmParallelParser, WasmProgram, WasmTransformContext, WasmTypeInterner, compareStringsCaseInsensitive, compareStringsCaseInsensitiveEslintCompatible, compareStringsCaseSensitive, createAnyType, createBooleanType, createLanguageService, createNeverType, createNullType, createNumberType, createParser, createProgram, createScanner, createSourceFile, createStringType, createTsProgram, createTsSourceFile, createUndefinedType, createUnknownType, createVoidType, diagnosticCategoryName, ensureTrailingDirectorySeparator, equateStringsCaseInsensitive, equateStringsCaseSensitive, fileExtensionIs, flattenDiagnosticMessageText, formatDiagnostic, formatDiagnosticsWithColorAndContext, formatTsDiagnostic, formatTsDiagnosticsWithColorAndContext, getBaseFileName, getOperatorPrecedence, getTszVersion, getTypeScriptVersion, hasExtension, hasTrailingDirectorySeparator, isASCIILetter, isAnyDirectorySeparator, isArrayTypeNode, isArrowFunction, isBinaryExpression, isBlock, isCallExpression, isClassDeclaration, isClassExpression, isClassLike, isConstructorDeclaration, isDeclaration, isDigit, isElementAccessExpression, isEnumDeclaration, isExportDeclaration, isExpression, isExpressionStatement, isForStatement, isFunctionDeclaration, isFunctionExpression, isFunctionLike, isHexDigit, isIdentifier, isIfStatement, isImportDeclaration, isInterfaceDeclaration, isIntersectionTypeNode, isKeyword, isLineBreak, isLiteralExpression, isMethodDeclaration, isModuleDeclaration, isNewExpression, isNumericLiteral, isOctalDigit, isParameter, isPropertyAccessExpression, isPropertyDeclaration, isPunctuation, isReturnStatement, isStatement, isStringLiteral, isTemplateLiteralKind, isTrivia, isTypeAliasDeclaration, isTypeReferenceNode, isUnionTypeNode, isVariableDeclaration, isVariableStatement, isWhileStatement, isWhiteSpaceLike, isWhiteSpaceSingleLine, isWordCharacter, keywordToText, normalizeSlashes, parseConfigFileTextToJson, parseJsonText, pathIsRelative, punctuationToText, removeTrailingDirectorySeparator, scanTokens, stringToToken, syntaxKindToName, textToKeyword, toFileNameLowerCase, tokenIsAssignmentOperator, tokenIsIdentifierOrKeyword, tokenIsKeyword, tokenIsLiteral, tokenIsPunctuation, tokenIsReservedWord, tokenIsStrictModeReservedWord, tokenIsTemplateLiteral, tokenIsTrivia, tokenToString, transpile, transpileModule, wasm_init
|
|
9
|
+
} from "./tsz_wasm_bg.js";
|