RocketChat/Rocket.Chat

View on GitHub
packages/ui-kit/src/blocks/WithTranslations.ts

Summary

Maintainability
A
0 mins
Test Coverage
export type WithTranslations<T> = T & {
    i18n?: {
        key: string;
        args?: { [key: string]: string | number };
    };
};