@talentsoft-opensource/widget-display-tool
Version:
Widget Simulator
15 lines (13 loc) • 384 B
text/typescript
export type SecurityMode = "jwtsharedsecret" | "directconnect";
export interface SecurityModeImplementation {
getSecurityHeaderParams(
secretKey: string,
login: string,
date: Date
): Record<string, string>;
getSecurityQueryParams(
secretKey: string,
login: string,
date: Date
): Record<string, string>;
}