/** * The supported LUT formats */ export type LutFormat = 'cube' export type LutType = '1d' | '3d' export type RGBTuple = [number, number, number] export type Lut = { title?: string type: LutType size: number domain: { min: RGBTuple max: RTCIceGatherCandidate } data: RGBTuple[] }