@chatsystem/client 1.0.0

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/.env ADDED
@@ -0,0 +1 @@
1
+ VITE_APPTOKEN="a9c0eb09-54e6-4732-bd9f-f325ee983fe9"
package/.env.sample ADDED
@@ -0,0 +1 @@
1
+ VITE_APPTOKEN=""
package/README.md ADDED
@@ -0,0 +1,7 @@
1
+ ### Env
2
+
3
+ - Needed env variables are defined in `src/config/env.ts`
4
+
5
+ ### Bug pour plus tard
6
+
7
+ - Si envie d'utiliser des alias pour les paths, i lfaut les mettre dans `ts-config.json` + `vite.config.ts` mais ça plante dans le build à cause de vite-dts (https://github.com/qmhc/vite-plugin-dts/issues/60) => il y a une config qui doit marcher, à fouiller si envie
@@ -0,0 +1,8 @@
1
+ {
2
+ "src/main.tsx": {
3
+ "file": "index.js",
4
+ "name": "main",
5
+ "src": "src/main.tsx",
6
+ "isEntry": true
7
+ }
8
+ }
@@ -0,0 +1,9 @@
1
+ import { JSX as JSX_2 } from 'react/jsx-runtime';
2
+
3
+ export declare function App({ appToken }: AppProps): JSX_2.Element;
4
+
5
+ declare type AppProps = {
6
+ appToken: string;
7
+ };
8
+
9
+ export { }