@lcap/nasl 0.3.10-beta → 0.3.10-beta.nocache

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.
Files changed (43) hide show
  1. package/out/types/app/App.d.ts +1 -4
  2. package/out/types/app/App.js +0 -24
  3. package/out/types/app/App.js.map +1 -1
  4. package/out/types/app/Service.js +2 -2
  5. package/out/types/app/Service.js.map +1 -1
  6. package/out/types/index.d.ts +1 -3
  7. package/out/types/index.js +2 -6
  8. package/out/types/index.js.map +1 -1
  9. package/out/types/logic/Logic.d.ts +0 -12
  10. package/out/types/logic/Logic.js +0 -14
  11. package/out/types/logic/Logic.js.map +1 -1
  12. package/out/types/logic/LogicItem.d.ts +1 -20
  13. package/out/types/logic/LogicItem.js +0 -184
  14. package/out/types/logic/LogicItem.js.map +1 -1
  15. package/out/types/page/View.d.ts +2 -16
  16. package/out/types/page/View.js +5 -16
  17. package/out/types/page/View.js.map +1 -1
  18. package/package.json +1 -2
  19. package/src/types/app/App.ts +1 -27
  20. package/src/types/app/Service.ts +2 -2
  21. package/src/types/index.ts +1 -3
  22. package/src/types/logic/Logic.ts +0 -24
  23. package/src/types/logic/LogicItem.ts +5 -207
  24. package/src/types/logic/translator.js +86 -146
  25. package/src/types/page/View.ts +7 -28
  26. package/src/types/page/dist/View.js +727 -0
  27. package/tsconfig.json +1 -1
  28. package/out/service/debugger/debugger.d.ts +0 -3
  29. package/out/service/debugger/debugger.js +0 -95
  30. package/out/service/debugger/debugger.js.map +0 -1
  31. package/out/test/units/config.spec.d.ts +0 -1
  32. package/out/test/units/config.spec.js +0 -12
  33. package/out/test/units/config.spec.js.map +0 -1
  34. package/out/types/logic/BreakPoint.d.ts +0 -42
  35. package/out/types/logic/BreakPoint.js +0 -155
  36. package/out/types/logic/BreakPoint.js.map +0 -1
  37. package/out/types/logic/Debugger.d.ts +0 -156
  38. package/out/types/logic/Debugger.js +0 -912
  39. package/out/types/logic/Debugger.js.map +0 -1
  40. package/src/service/debugger/debugger.js +0 -90
  41. package/src/types/logic/BreakPoint.ts +0 -200
  42. package/src/types/logic/Debugger.ts +0 -1140
  43. package/src/types/logic/translator.d.ts +0 -16
@@ -1,16 +0,0 @@
1
-
2
- declare namespace Translator {
3
- export interface FrontEndsourceMap {
4
- [id: string]: {
5
- isLogic: boolean,
6
- node: LogicItem,
7
- from: number,
8
- to: number,
9
- }
10
- }
11
- }
12
- declare function Translator(source: string, preScript: string): {
13
- output: string,
14
- sourceMap: Translator.FrontEndsourceMap,
15
- };
16
- export = Translator;