Почему этот typescript typeguard не работает
#typescript #typeguards #typescript #typeguards Вопрос: У меня есть следующий код const validProtocols = ["https", "http"] as const type AllProtocols = typeof validProtocols type Protocol = AllProtocols[number] function isProtocol(p:unknown): p is…