integreat-transporter-http
Version:
HTTP transporter for Integreat
10 lines (9 loc) • 345 B
TypeScript
import type { Authenticator, Authentication, AuthOptions } from 'integreat';
export type HttpAuthentication = Authentication;
export interface HttpOptions extends AuthOptions {
type?: 'Basic';
key?: string;
secret?: string;
}
declare const authenticator: Authenticator<HttpAuthentication, HttpOptions>;
export default authenticator;