mbler 0.2.4-rc.5 → 0.2.4-rc.7

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/client.d.ts ADDED
@@ -0,0 +1,17 @@
1
+ import type * as mcx from '@mbler/mcx-core'
2
+
3
+ declare module '*.png' {
4
+ export default mcx.PNGImageComponent
5
+ }
6
+ declare module '*.svg' {
7
+ export default mcx.SVGImageComponent
8
+ }
9
+ declare module '*.jpg' {
10
+ export default mcx.JPGImageComponent
11
+ }
12
+ declare module '*.jpeg' {
13
+ export default mcx.JPGImageComponent
14
+ }
15
+ declare module '*.gif' {
16
+ export default mcx.GIFImageComponent
17
+ }
package/dist/build.d.ts CHANGED
@@ -16,7 +16,7 @@ interface MblerConfigOutdir {
16
16
  }
17
17
  interface MblerBuildConfig {
18
18
  rollupPlugins: Plugin[];
19
- cache: "none" | "memory" | "file" | "filesystem" | "auto";
19
+ cache: 'none' | 'memory' | 'file' | 'filesystem' | 'auto';
20
20
  bundle: boolean;
21
21
  onEnd: (ctx: MblerConfigData) => void | Promise<void>;
22
22
  onStart: (ctx: MblerConfigData) => void | Promise<void>;