mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-13 23:59:12 +08:00
10 lines
145 B
TypeScript
10 lines
145 B
TypeScript
|
interface ENLocale {
|
||
|
locale: 'en-US';
|
||
|
messages: {
|
||
|
[key: PropertyKey]: string;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
const enLocale: ENLocale;
|
||
|
export default enLocale;
|