tw5-typed 0.0.2 → 0.0.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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/index.d.ts +4 -9
package/package.json CHANGED
@@ -2,9 +2,9 @@
2
2
  "description": "Types for tiddlywiki",
3
3
  "license": "MIT",
4
4
  "name": "tw5-typed",
5
- "version": "0.0.2",
5
+ "version": "0.0.3",
6
6
  "url": "https://github.com/tiddly-gittly/tw5-typed",
7
- "types": "index.d.ts",
7
+ "types": "src/index.d.ts",
8
8
  "files": [
9
9
  "src/"
10
10
  ],
package/src/index.d.ts CHANGED
@@ -1,15 +1,10 @@
1
1
  import { I$TW } from './tw';
2
- import './filter-operator';
2
+ export * from './tw';
3
+ export * from './filter-operator';
3
4
 
4
- declare module 'tiddlywiki' {
5
- export * from './tw';
6
- export * from './filter-operator';
7
- }
5
+ declare module 'tiddlywiki' {}
8
6
 
9
- // this only work when there is no import statement...
10
- // declare module '@tiddlygit/tiddlywiki' {
11
- // export * from 'tiddlywiki';
12
- // }
7
+ declare module '@tiddlygit/tiddlywiki' {}
13
8
 
14
9
  declare global {
15
10
  var $tw: I$TW;