@abco20/btxml-checker 0.1.2 → 0.1.3
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/cli.js +29 -28
- package/dist/config.d.ts +3 -3
- package/dist/config.js +1 -1
- package/dist/editor-node.d.ts +7 -7
- package/dist/editor-node.js +22 -22
- package/dist/editor.d.ts +7 -7
- package/dist/editor.js +16 -16
- package/dist/{effective-t_u6qJ-7.d.ts → effective-Dmz864HF.d.ts} +1 -1
- package/dist/index.d.ts +4 -4
- package/dist/index.js +10 -10
- package/dist/model.d.ts +2 -2
- package/dist/model.js +3 -3
- package/dist/{public-types-Cp3bKKQ3.d.ts → public-types-D3_VR6Sy.d.ts} +5 -5
- package/dist/{public-types-DCvVgnqw.d.ts → public-types-zg51kxSL.d.ts} +9 -0
- package/dist/rules.d.ts +24 -6
- package/dist/rules.js +4 -3
- package/dist/semantic.d.ts +6 -6
- package/dist/semantic.js +3 -3
- package/dist/server.cjs +333 -5
- package/dist/server.cjs.map +1 -1
- package/dist/{types-f9KgrQFd.d.ts → types-BIuA9iLZ.d.ts} +2 -2
- package/dist/{types-BRzExVMv.d.ts → types-DPS-KRMY.d.ts} +2 -2
- package/dist/{types-B2hnkNNL.d.ts → types-DkQEPPAM.d.ts} +2 -2
- package/dist/{types-BgqDzlJ8.d.ts → types-H6H-_Z3F.d.ts} +12 -0
- package/package.json +1 -1
- package/schemas/btxml.config.schema.json +10 -0
package/dist/editor.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { L as LanguageServiceOptions, a as LanguageService, B as BtEditorServiceOptions, b as BtEditorService } from './public-types-
|
|
2
|
-
export { C as CodeAction, c as CodeActionsInput, d as CodeActionsResult, e as CompletionInput, f as CompletionItem, g as CompletionItemKind, h as CompletionResult, D as DefinitionInput, i as DefinitionResult, j as DiagnosticsInput, k as DiagnosticsResult, l as DocumentSymbol, m as DocumentSymbolsInput, n as DocumentSymbolsResult, F as FormattingInput, o as FormattingResult, H as HoverInput, p as HoverResult, q as Location, N as NodeCatalogResult, r as NodeModelResult, s as NodeUsageAtResult, P as PortInfoResult, R as ReferencesInput, t as ReferencesResult, S as SemanticDocumentViewResult, u as SemanticNodeResult, W as WorkspaceDiagnosticsResult, v as WorkspaceHost } from './public-types-
|
|
3
|
-
import './types-
|
|
1
|
+
import { L as LanguageServiceOptions, a as LanguageService, B as BtEditorServiceOptions, b as BtEditorService } from './public-types-D3_VR6Sy.js';
|
|
2
|
+
export { C as CodeAction, c as CodeActionsInput, d as CodeActionsResult, e as CompletionInput, f as CompletionItem, g as CompletionItemKind, h as CompletionResult, D as DefinitionInput, i as DefinitionResult, j as DiagnosticsInput, k as DiagnosticsResult, l as DocumentSymbol, m as DocumentSymbolsInput, n as DocumentSymbolsResult, F as FormattingInput, o as FormattingResult, H as HoverInput, p as HoverResult, q as Location, N as NodeCatalogResult, r as NodeModelResult, s as NodeUsageAtResult, P as PortInfoResult, R as ReferencesInput, t as ReferencesResult, S as SemanticDocumentViewResult, u as SemanticNodeResult, W as WorkspaceDiagnosticsResult, v as WorkspaceHost } from './public-types-D3_VR6Sy.js';
|
|
3
|
+
import './types-H6H-_Z3F.js';
|
|
4
4
|
import './diagnostic-B5htzyJ9.js';
|
|
5
5
|
import 'zod';
|
|
6
|
-
import './public-types-
|
|
7
|
-
import './types-
|
|
8
|
-
import './types-
|
|
9
|
-
import './types-
|
|
6
|
+
import './public-types-zg51kxSL.js';
|
|
7
|
+
import './types-BIuA9iLZ.js';
|
|
8
|
+
import './types-DkQEPPAM.js';
|
|
9
|
+
import './types-DPS-KRMY.js';
|
|
10
10
|
import './ast-BbfR3S_b.js';
|
|
11
11
|
|
|
12
12
|
declare function createLanguageService(options?: LanguageServiceOptions): LanguageService;
|