/
githubmirror
/
client
Обзор
Документация
Войти
/
githubmirror
/
client
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
shared/common-adapters/icon.shared.tsx
8 строк
278 B
chrisnojima
build(mobile): harden gobuild.sh and go bind pipeline 2 (#29364)
08 июл 2026, 15:25
Не верифицирован
08 июл 2026, 15:25
19b55b3
Код
Авторство
О чём код?
import type {IconType} from './icon.constants-gen' import {iconMeta} from './icon.constants-gen' export function isValidIconType(inputType: string): inputType is IconType { if (!inputType) return false const iconType = inputType as IconType return !!iconMeta[iconType] }