@jam-comments/server-utilities 3.2.0 → 3.2.1
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
interface IFetchData {
|
|
1
|
+
export interface IFetchData {
|
|
2
2
|
path: string;
|
|
3
3
|
domain: string;
|
|
4
4
|
apiKey: string;
|
|
@@ -7,4 +7,3 @@ interface IFetchData {
|
|
|
7
7
|
environment?: string;
|
|
8
8
|
}
|
|
9
9
|
export declare const markupFetcher: (platform: string, fetchImplementation?: typeof fetch) => (args: IFetchData) => Promise<string>;
|
|
10
|
-
export {};
|