Skip to content
Snippets Groups Projects
config.model.ts 281 B
Newer Older
  • Learn to ignore specific revisions
  • Hugo NOUTS's avatar
    Hugo NOUTS committed
    interface KonnectorConfig {
      name: string
      type: string
    
      oauth: boolean
    
    Hugo NOUTS's avatar
    Hugo NOUTS committed
      slug: string
    
      cron?: string
    
    Hugo NOUTS's avatar
    Hugo NOUTS committed
    }
    
    
    export interface FluidConfig {
    
    Hugo NOUTS's avatar
    Hugo NOUTS committed
      fluidTypeId: number
      name: string
      coefficient: number
      dataDelayOffset: number
      konnectorConfig: KonnectorConfig
    
      siteLink: string
    
    Hugo NOUTS's avatar
    Hugo NOUTS committed
    }