function padLeft(value: string, padding: string | number) {
// ...
}
function offset(direction: 'left' | 'right' | 'top' | 'bottom', size: number) {
// ...
}
function position(value: string | number) {
if (typeof value === 'string') {
return value.indexOf('');
}
// 여기부턴 number
return value;
}