Home > @i2analyze/i2connect > utility > AuthenticateCallbackParameters
utility.AuthenticateCallbackParameters type
A utility type to determine the parameters for the authenticate callback.
Signature:
type AuthenticateCallbackParameters<TForm extends services.AuthForm = services.AuthForm> = {
readonly conditions: {
[K in keyof TForm]: string;
};
readonly requestInformation: services.IRequestInformation;
};
References: services.AuthForm, services.IRequestInformation
Introduced: API version 2.0
Type Parameters
Parameter | Type | Description |
---|---|---|
TForm | extends services.AuthForm(default: services.AuthForm) | The type of form. |