mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-24 10:56:53 +00: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);
|