File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 2
2
* This contains:
3
3
* - Static type checks to verify the Spec's types are compatible with the SDK's types
4
4
* (mutually assignable, w/ slight affordances to get rid of ZodObject.passthrough() index signatures, etc)
5
- * - Runtime checks to verify all Spec types have a static check
6
- * (a few don't have SDK types, see TODOs in this file)
5
+ * - Runtime checks to verify each Spec type has a static check
6
+ * (note: a few don't have SDK types, see TODOs in this file)
7
7
*/
8
8
import * as SDKTypes from "./types.js" ;
9
9
import * as SpecTypes from "./spec.types.js" ;
@@ -685,6 +685,7 @@ function checkServerNotification(
685
685
// spec = sdk;
686
686
// }
687
687
688
+ // This file is .gitignore'd, and fetched by `npm run fetch:spec-types` (called by `npm run test`)
688
689
const SPEC_TYPES_FILE = 'src/spec.types.ts' ;
689
690
const THIS_SOURCE_FILE = 'src/spec.types.test.ts' ;
690
691
You can’t perform that action at this time.
0 commit comments