mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 00:49:39 +08:00
71eddd2c20
* chore: remove useless tsx support * add * revert * add * fix * fix * add test case * fix
10 lines
291 B
TypeScript
10 lines
291 B
TypeScript
/** Created by Andrey Gayvoronsky on 13/04/16. */
|
|
import type { TimePickerLocale } from '../index';
|
|
|
|
const locale: TimePickerLocale = {
|
|
placeholder: 'Выберите время',
|
|
rangePlaceholder: ['Время начала', 'Время окончания'],
|
|
};
|
|
|
|
export default locale;
|