File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
experimental/dds/tree2/src/feature-libraries/typed-schema Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -55,13 +55,13 @@ export type NormalizeStructFields<T extends Fields | undefined> = NormalizeStruc
55
55
*
56
56
* These extends constraints only serve as documentation:
57
57
* to avoid breaking compilation, this type has to not actually enforce anything, and thus is just `unknown`.
58
- * Therefor the type safety is the responsibility of the user of the API.
58
+ * Therefore the type safety is the responsibility of the user of the API.
59
59
* @alpha
60
60
*/
61
61
export type Unenforced < _DesiredExtendsConstraint > = unknown ;
62
62
63
63
{
64
- type _check2 = requireAssignableTo < TreeSchema , Unenforced < TreeSchema > > ;
64
+ type _check = requireAssignableTo < TreeSchema , Unenforced < TreeSchema > > ;
65
65
}
66
66
67
67
/**
@@ -310,7 +310,7 @@ export class FieldSchema<
310
310
311
311
/**
312
312
* Constructs a FieldSchema.
313
- * @remarks
313
+ * @privateRemarks
314
314
* Alias for the constructor, but with extends clause for the `Types` parameter that {@link FieldSchema} can not have (due to recursive type issues).
315
315
*/
316
316
public static create < Kind extends FieldKind , const Types extends AllowedTypes > (
You can’t perform that action at this time.
0 commit comments