Skip to content

SampleLayer enum type

Possible layers for a sample.

ts
const SampleLayer = {
  Background: 0,
  Fail: 1,
  Pass: 2,
  Foreground: 3,
} as const

type SampleLayer = (typeof SampleLayer)[keyof typeof SampleLayer]