| 1234567891011 |
- import {getEditor} from './../editors';
- import {getRenderer} from './../renderers';
- import {getValidator} from './../validators';
- const CELL_TYPE = 'password';
- export default {
- editor: getEditor(CELL_TYPE),
- renderer: getRenderer(CELL_TYPE),
- copyable: false,
- };
|