astn 0.113.68 → 0.113.69

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.
@@ -1,5 +1,8 @@
1
1
  import * as _pi from 'pareto-core/dist/interface';
2
2
  import * as d_in from "astn-core/dist/interface/generated/liana/schemas/parse_tree/data";
3
3
  import * as d_out from "pareto-fountain-pen/dist/interface/generated/liana/schemas/text/data";
4
- export type Document = _pi.Transformer<d_in.Document, d_out.Text>;
4
+ export type Document = _pi.Transformer_With_Parameter<d_in.Document, d_out.Text, {
5
+ 'indentation': string;
6
+ 'newline': string;
7
+ }>;
5
8
  export declare const Document: Document;
@@ -37,11 +37,8 @@ exports.Document = void 0;
37
37
  //dependencies
38
38
  const t_authoring_target_to_text = __importStar(require("../authoring_target/text"));
39
39
  const t_to_authoring_target = __importStar(require("./authoring_target"));
40
- const Document = ($) => {
41
- return t_authoring_target_to_text.Document(t_to_authoring_target.Document($), {
42
- 'indentation': "",
43
- 'newline': "\n",
44
- });
40
+ const Document = ($, $p) => {
41
+ return t_authoring_target_to_text.Document(t_to_authoring_target.Document($), $p);
45
42
  };
46
43
  exports.Document = Document;
47
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9pbXBsZW1lbnRhdGlvbi9tYW51YWwvdHJhbnNmb3JtZXJzL3BhcnNlX3RyZWUvdGV4dC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFTQSxjQUFjO0FBQ2QscUZBQXNFO0FBQ3RFLDBFQUEyRDtBQUlwRCxNQUFNLFFBQVEsR0FBYSxDQUFDLENBQUMsRUFBRSxFQUFFO0lBQ3BDLE9BQU8sMEJBQTBCLENBQUMsUUFBUSxDQUN0QyxxQkFBcUIsQ0FBQyxRQUFRLENBQzFCLENBQUMsQ0FDSixFQUNEO1FBQ0ksYUFBYSxFQUFFLEVBQUU7UUFDakIsU0FBUyxFQUFFLElBQUk7S0FDbEIsQ0FDSixDQUFBO0FBQ0wsQ0FBQyxDQUFBO0FBVlksUUFBQSxRQUFRLFlBVXBCIn0=
44
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9pbXBsZW1lbnRhdGlvbi9tYW51YWwvdHJhbnNmb3JtZXJzL3BhcnNlX3RyZWUvdGV4dC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFTQSxjQUFjO0FBQ2QscUZBQXNFO0FBQ3RFLDBFQUEyRDtBQUlwRCxNQUFNLFFBQVEsR0FBYSxDQUFDLENBQUMsRUFBRSxFQUFFLEVBQUUsRUFBRTtJQUN4QyxPQUFPLDBCQUEwQixDQUFDLFFBQVEsQ0FDdEMscUJBQXFCLENBQUMsUUFBUSxDQUMxQixDQUFDLENBQ0osRUFDRCxFQUFFLENBQ0wsQ0FBQTtBQUNMLENBQUMsQ0FBQTtBQVBZLFFBQUEsUUFBUSxZQU9wQiJ9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "astn",
3
- "version": "0.113.68",
3
+ "version": "0.113.69",
4
4
  "author": "Corno",
5
5
  "license": "Apache-2.0",
6
6
  "description": "The TypeScript library for parsing and formatting ASTN (Abstract Syntax Tree Notation) - a human-editable data format for structured content",