codenotch-react 1.0.13 → 1.0.14

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/index.d.ts +2 -2
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -16,6 +16,6 @@ export interface ICodenotchEnv {
16
16
  baseUrl?: string;
17
17
  }
18
18
 
19
- export type CodenotchFC<T> = React.FC<(ICodenotchEnv & T)>;
19
+ export type CodenotchAppFC<T> = React.FC<(ICodenotchEnv & T)>;
20
20
 
21
- export type CodenotchComponent<T> = React.ComponentType<(ICodenotchEnv & T)>;
21
+ export type CodenotchApp<T> = React.ComponentType<(ICodenotchEnv & T)>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codenotch-react",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "type": "module",