Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
module.exports = [
  { api: "defineDisplay", name: "display", file: "./mydisplay.json", config: {
    rrnFields: {
      sfl1: 'rrn1',
      sfl2: 'rrn2'
    }
  } },
  { api: "defineTable", name: "myfile", config: { read: true, keyed: true } },
  { api: "include", file: "myprototypes.js" },
  { name: "field1", config: { type: 'char', length: 10 } },
  { name: "field2", config: { type: 'char', length: 20 } }
]

...