mirror of
https://github.com/seriousm4x/UpSnap.git
synced 2026-03-31 06:24:11 -04:00
9 lines
174 B
TypeScript
9 lines
174 B
TypeScript
import id from '../id';
|
|
import type { Translation } from '../i18n-types';
|
|
|
|
const id_ID = {
|
|
...(id as unknown as Translation)
|
|
} satisfies Translation;
|
|
|
|
export default id_ID;
|