acsi-core 0.2.2 → 0.2.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.
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ declare const UpdateNotifier: React.FC;
3
+ export default UpdateNotifier;
@@ -0,0 +1,3 @@
1
+ import { AxiosInstance } from "axios";
2
+ export declare const api: AxiosInstance;
3
+ export declare const apiUpload: AxiosInstance;
@@ -0,0 +1,2 @@
1
+ export declare const loadConfig: () => Promise<Record<string, string>>;
2
+ export declare const getConfigValue: (key: string) => string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "acsi-core",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "Contains core components && functions for acsi-core project",
5
5
  "author": "brss",
6
6
  "license": "MIT",
@@ -1,3 +0,0 @@
1
- /// <reference types="react" />
2
- declare const PDFViewer: () => import("react").JSX.Element;
3
- export default PDFViewer;