@danielx/civet 0.2.10 → 0.2.11

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 (2) hide show
  1. package/dist/types.d.ts +3 -1
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -8,9 +8,11 @@ declare module "@danielx/civet" {
8
8
  export function parse(source: string): CivetAST
9
9
  export function generate(ast: CivetAST, options?: CompileOptions): string
10
10
 
11
- export default interface Civet {
11
+ const Civet: {
12
12
  compile: typeof compile;
13
13
  parse: typeof parse;
14
14
  generate: typeof generate;
15
15
  }
16
+
17
+ export default Civet;
16
18
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@danielx/civet",
3
- "version": "0.2.10",
3
+ "version": "0.2.11",
4
4
  "description": "CoffeeScript style syntax for TypeScript",
5
5
  "main": "dist/main.js",
6
6
  "types": "dist/types.d.ts",