@markw65/prettier-plugin-monkeyc 1.0.27 → 1.0.28

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/README.md CHANGED
@@ -230,3 +230,7 @@ Accept and fix a few more illegal programs
230
230
  #### 1.0.27
231
231
 
232
232
  - More nits in estree-types.
233
+
234
+ #### 1.0.28
235
+
236
+ - More nits in estree-types.
@@ -114,6 +114,7 @@ export interface FunctionDeclaration extends BaseFunction, BaseDeclaration {
114
114
  id: Identifier;
115
115
  optimizable?: boolean;
116
116
  hasOverride?: boolean;
117
+ returnType?: AsTypeSpec;
117
118
  }
118
119
  export interface VariableDeclaration extends BaseDeclaration {
119
120
  type: "VariableDeclaration";
package/package.json CHANGED
@@ -23,7 +23,7 @@
23
23
  "prepack": "webpack --mode production"
24
24
  },
25
25
  "name": "@markw65/prettier-plugin-monkeyc",
26
- "version": "1.0.27",
26
+ "version": "1.0.28",
27
27
  "description": "A prettier plugin for Garmin monkey-c",
28
28
  "main": "build/prettier-plugin-monkeyc.cjs",
29
29
  "types": "build/src/prettier-plugin-monkeyc.d.ts",