/** * 获取所有语言(大小写敏感) */ declare function getSupportedLngs(): string[]; /** * 获取所有命名空间(大小写敏感) * * 如果启用了namespace,则返回 { [lng]: [ns1, ns2] } * 否则返回 {} */ declare function getSupportedNs(): { [k: string]: string[]; }; export { getSupportedLngs, getSupportedNs };