import z from 'zod'; export const zInstallationChannels = z.enum([ 'Attribute', 'Launcher', 'Standalone', 'Discord', 'Slack', 'API', ]); type InstallationChannels = z.infer; export default InstallationChannels;