UNPKG

@citrineos/base

Version:

The base module for OCPP v2.0.1 including all interfaces. This module is not intended to be used directly, but rather as a dependency for other modules.

8 lines (7 loc) 263 B
import { IncomingMessage } from 'http'; import { AuthenticationOptions } from './AuthenticationOptions'; export interface IAuthenticator { authenticate(request: IncomingMessage, options: AuthenticationOptions): Promise<{ identifier: string; }>; }