github samchon/typia v4.1.2

latest releases: v6.11.1, v6.11.0, v6.10.4...
15 months ago

Started supporting repeated intersection type like below:

export type ISetupConfig =
  | ({
      type: 'Main';
    } & ISetupConfigMain)
  | ({
      type: 'Before';
    } & ISetupConfigBefore)
  | ({
      type: 'After';
    } & ISetupConfigAfter);

export type ISetupConfigMain = {
  content: ISetupConfig;
};

export type ISetupConfigBefore = {
  content: ISetupConfig;
};

export type ISetupConfigAfter = {
  content: ISetupConfig;
};

What's Changed

New Contributors

Full Changelog: v4.1.1...v4.1.2

Don't miss a new typia release

NewReleases is sending notifications on new releases.