gen-jhipster
Version:
VHipster - Spring Boot + Angular/React/Vue in one handy generator
23 lines (22 loc) • 716 B
TypeScript
export declare const AuthenticationTypeMatrix: {
authenticationType: ("session" | "jwt" | "oauth2")[];
};
export declare const ReactiveMatrix: {
reactive: boolean[];
};
export declare const MatrixMonolith: {
authenticationType: ("session" | "jwt" | "oauth2")[];
applicationType: "monolith"[];
};
export declare const MatrixMicroservice: {
applicationType: "microservice"[];
authenticationType: ("jwt" | "oauth2")[];
};
export declare const MatrixGateway: {
applicationType: "gateway"[];
authenticationType: ("jwt" | "oauth2")[];
};
export declare const MatrixMicroserviceGateway: {
applicationType: ("microservice" | "gateway")[];
authenticationType: ("jwt" | "oauth2")[];
};