mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 13:08:41 +08:00
10 lines
145 B
TypeScript
10 lines
145 B
TypeScript
|
interface CNLocale {
|
||
|
locale: 'zh-CN';
|
||
|
messages: {
|
||
|
[key: PropertyKey]: string;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
const cnLocale: CNLocale;
|
||
|
export default cnLocale;
|