springboot-express
Version:
express-spring-boot
16 lines (15 loc) • 658 B
TypeScript
import { flombok } from "lib-utils-ts/src/flombok";
import { List, MapType } from "lib-utils-ts/src/Interface";
import { Cookie } from "lib-utils-ts/src/net/Cookie";
import { SpringbootReqImpl } from "./Interfaces";
export declare class SpringbootReq implements SpringbootReqImpl {
private type;
private cookie;
private jwtToken;
getType: flombok.getNumberFunc;
setType: flombok.setNumberFunc;
getCookie: flombok.accessorGetFunc<List<Cookie>>;
setCookie: flombok.accessorSetFunc<List<Cookie>>;
getJwtToken: flombok.accessorGetFunc<MapType<string, Object>>;
setJwtToken: flombok.accessorSetFunc<MapType<string, Object>>;
}