@mikezimm/fps-library-v2
Version:
Library of reusable typescript/javascript functions, interfaces and constants
20 lines • 727 B
TypeScript
import * as React from 'react';
import { HttpClient } from '@microsoft/sp-http';
import { IFpsHttpInfo } from '../HttpFetch/functions';
import { IHttpClientOptions } from '@microsoft/sp-http-base';
export declare const HTTPApiIsValidMessage: string;
export interface IHTTPApiProps {
showComponent: boolean;
inputLabel?: string;
textInput: string;
description: string;
httpClient: HttpClient;
updateInputCallback(url: string, siteInfo: IFpsHttpInfo): void;
callBackOnError: boolean;
debugMode?: boolean;
wpID: string;
headers?: IHttpClientOptions;
}
declare const HTTPApiHook: React.FC<IHTTPApiProps>;
export default HTTPApiHook;
//# sourceMappingURL=component.d.ts.map