You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Types.ts 355B

1234567891011121314
  1. import Knex = require("knex")
  2. export declare type NotificationSeverity = 'Info' | 'Important' | 'Error';
  3. export type AdminConf = {
  4. httpPort: number,
  5. dbConf:Knex.Config,
  6. eventBusConf: { [topic in string]: NotificationSeverity}
  7. }
  8. export type TableDefiniton = {
  9. name: string,
  10. tableBuilder: (table: Knex.CreateTableBuilder) => void
  11. }