about summary refs log tree commit diff
path: root/src/types/utils.ts
blob: f64922a1f1424eec3cf98c4a79968a7f5536f24c (plain) (blame)
1
2
3
4
5
export type Literal<T, A = string> = T extends A
  ? string extends T
    ? never
    : T
  : never