Skip to content

Instantly share code, notes, and snippets.

@candidosales
Last active November 29, 2024 21:34
Show Gist options
  • Save candidosales/f94169428ca3148ae22108c6a183807d to your computer and use it in GitHub Desktop.
Save candidosales/f94169428ca3148ae22108c6a183807d to your computer and use it in GitHub Desktop.
export const TypeColor = [
'low',
'info',
'high',
'critical',
undefined,
] as const;
export type TypeColor = (typeof TypeColor)[number];
// Guard value
export function isTypeColor(value: any): value is TypeColor {
return TypeColor.includes(value);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment