mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-10-23 05:31:07 +08:00
5 lines
168 B
TypeScript
5 lines
168 B
TypeScript
import { ChannelType } from './config';
|
|
|
|
export const isChannelType = (type: string): type is ChannelType =>
|
|
Object.values(ChannelType).includes(type as ChannelType);
|