id.ts 224 B

12345678910
  1. import type {CodeKeywordDefinition} from "../../types"
  2. const def: CodeKeywordDefinition = {
  3. keyword: "id",
  4. code() {
  5. throw new Error('NOT SUPPORTED: keyword "id", use "$id" for schema ID')
  6. },
  7. }
  8. export default def