UNPKG

@becomes/cms

Version:

Simple CMS for building APIs.

11 lines (10 loc) 247 B
export interface ISOLanguage { code: string; name: string; nativeName: string; } export declare class ISOLanguages { private static langs; static get getAll(): ISOLanguage[]; static get(code: string): ISOLanguage | null; }