Hi, I was deploying using jspurefix and I had some strict type errs stemming from string | undefined -> string. I had to implement an override, thought this might be helpful for users failing on build as I was:
declare module "jspurefix/dist/transport/session/a-session-msg-factory" {
import { ISessionMsgFactory } from "jspurefix";
import { ILooseObject } from "jspurefix/dist/collections/collection";
import { IStandardHeader } from "jspurefix/dist/types/FIX4.4/repo";
Hi, I was deploying using jspurefix and I had some strict type errs stemming from string | undefined -> string. I had to implement an override, thought this might be helpful for users failing on build as I was:
declare module "jspurefix/dist/transport/session/a-session-msg-factory" { import { ISessionMsgFactory } from "jspurefix"; import { ILooseObject } from "jspurefix/dist/collections/collection"; import { IStandardHeader } from "jspurefix/dist/types/FIX4.4/repo";
}