multi-downloader-nx/modules/iso639.d.ts
2021-10-27 22:46:08 +02:00

9 lines
No EOL
173 B
TypeScript

declare module 'iso-639' {
export type iso639Type = {
[key: string]: {
'639-1'?: string,
'639-2'?: string
}
}
export const iso_639_2: iso639Type;
}