Skip to content
Snippets Groups Projects
Select Git revision
  • 14ab2022b4c1d6f9cbd4ce1849045b77dfd7be22
  • master default protected
  • uv
  • 0.1.453
  • 0.1.452
  • 0.1.451
  • 0.1.450
  • 0.1.449
  • 0.1.448
  • 0.1.447
  • 0.1.446
  • 0.1.445
  • 0.1.444
  • 0.1.443
  • 0.1.442
  • 0.1.441
  • 0.1.440
  • 0.1.439
  • 0.1.438
  • 0.1.437
  • 0.1.436
  • 0.1.435
  • 0.1.434
23 results

example.env

Blame
  • graphes.ts 531 B
    export interface VariableGraph {
      depth: number
      ignore: boolean
      label: string
      name: string
      neg: boolean
      open: boolean
      parent: string | undefined
      summedValues: number[]
      trunk: boolean
      values: number[]
    }
    
    export interface VariableCustomization {
      stroke: { color: string; width?: string }
      pattern:
        | { background?: string; foreground?: string; size?: number }
        | undefined
      selected: "true" | "false" | "always"
    }
    
    export interface VariableCustomizations {
      [variable: string]: VariableCustomization
    }