OPEN_GRID API - v1.3.1
    Preparing search index...

    Type Alias LocaleMessageKey

    LocaleMessageKey: {
        [S in keyof LocaleMessages]: `${S & string}.${keyof LocaleMessages[S] & string}`
    }[keyof LocaleMessages]

    t() 에 넘길 수 있는 모든 유효 키의 유니온 타입(예: 'filter.apply'). 왜 필요한가: t('filter.aply') 처럼 오타가 나면 이 타입이 없을 때는 런타임에야 "키 없음" 경고로 드러난다 — 유니온으로 묶어 두면 컴파일 타임에 바로 에러가 난다. / Union of every key valid for t() (e.g. 'filter.apply'). Why this exists: without it, a typo like t('filter.aply') only surfaces as a runtime "unknown key" warning; unioning the keys turns it into a compile-time error instead.