pwi-plata-type 0.4.182 → 0.4.183

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pwi-plata-type",
3
- "version": "0.4.182",
3
+ "version": "0.4.183",
4
4
  "main": "__BUILD__/index",
5
5
  "types": "src/@types/exported.d.ts",
6
6
  "bin": {
@@ -4,7 +4,7 @@
4
4
  /// <reference path="router.d.ts" />
5
5
  /// <reference path="fs.d.ts" />
6
6
  /// <reference path="sql.d.ts" />
7
- /// <reference path="../bin/runtime/_types.d.ts" />
7
+ /// <reference path="../libs/runtime.ts" />
8
8
  /// <reference path="knex.d.ts" />
9
9
  /// <reference path="build.d.ts" />
10
10
 
@@ -67,7 +67,11 @@ interface PlataEnvAutoComplete extends NodeJS.ProcessEnv {
67
67
  _PLATA_SQL_CACHETABLETIME?: string
68
68
  }
69
69
 
70
- interface Plata {
70
+ interface PlataRuntime {
71
+
72
+ }
73
+
74
+ interface Plata extends PlataRuntime {
71
75
  }
72
76
 
73
77
  declare const Plata: Plata
@@ -6,7 +6,7 @@ import { PlataFs } from './fs'
6
6
  import { glob } from 'glob'
7
7
 
8
8
  declare global {
9
- interface Plata extends PlataGlobalRuntime { }
9
+ interface PlataRuntime extends PlataGlobalRuntime { }
10
10
  }
11
11
 
12
12
  export class PlataGlobalRuntime {