-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Export Schema<Id> type in @ethdebug/format
... in case any users of this package want to try their luck with something like json-schema-to-ts. Specifically, do: - Update the "yamls.ts" code generation step to output raw JSON objects for each schema (in addition to all the raw YAML strings currently output) - Declare raw JSON objects `as const`, to preserve each schema object at the type-level - Define a generic `Schema<Id>` type as a helper for getting the type of a schema with a given id
- Loading branch information
Showing
3 changed files
with
13 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
export * from "./describe"; | ||
export { schemas, schemaIds } from "./schemas"; | ||
export { schemas, schemaIds, type Schema } from "./schemas"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters