s2cfgtojson 3.15.0 → 4.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.mts +0 -14
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "s2cfgtojson",
3
- "version": "3.15.0",
3
+ "version": "4.0.0",
4
4
  "description": "Converts Stalker 2 Cfg file into POJOs",
5
5
  "keywords": [
6
6
  "stalker",
package/types.mts CHANGED
@@ -129,20 +129,6 @@ export type Internal =
129
129
  | "toString"
130
130
  | "fromString";
131
131
 
132
- export type DeeplyPartial<T> = {
133
- [P in keyof T]?: T[P] extends Array<infer U>
134
- ? Array<DeeplyPartial<U>>
135
- : T[P] extends ReadonlyArray<infer U>
136
- ? ReadonlyArray<DeeplyPartial<U>>
137
- : T[P] extends object
138
- ? DeeplyPartial<T[P]>
139
- : T[P];
140
- };
141
-
142
- export type DeeplyPartialStruct<T> = DeeplyPartial<
143
- T extends Struct ? Exclude<T, Internal> : T
144
- >;
145
-
146
132
  export interface DefaultEntries {
147
133
  rawName?: string;
148
134
  refurl?: string;