devscard/src/types/i18n.ts
angbur 33d22dc320
add basic layout of project-timeline-item (#44)
Co-authored-by: Bury <agnieszka.bury@capgemini.com>
2022-11-21 20:10:02 +01:00

8 lines
135 B
TypeScript

import type { Locales } from 'locales-ts/types';
export interface I18n {
locale: Locales;
translations: {
now: string;
};
}