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.
- package/package.json +1 -1
- package/types.mts +0 -14
package/package.json
CHANGED
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;
|