multi-downloader-nx/@types/iso639.d.ts
2022-02-20 19:56:45 +01:00

9 lines
No EOL
181 B
TypeScript

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