mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 20:20:00 +08:00
b91b30c48a
* chore: add missed variable (#25954) * chore: add missed variables (#25954) * chore: transform to uppercase (#25954) * chore: add missed varibles (#25954) Co-authored-by: Ivan.Yakovlev <ivan.yakovlev@pochtavip.com>
12 lines
290 B
TypeScript
12 lines
290 B
TypeScript
/**
|
|
* Created by Andrey Gayvoronsky on 13/04/16.
|
|
*/
|
|
import { TimePickerLocale } from '../index';
|
|
|
|
const locale: TimePickerLocale = {
|
|
placeholder: 'Выберите время',
|
|
rangePlaceholder: ['Время начала', 'Время окончания'],
|
|
};
|
|
|
|
export default locale;
|