UNPKG

@gitsunmin/k-number

Version:

숫자를 입력하면 한글 수사를 반환하는 기능을 제공하는 라이브러리입니다. (ex. 1234 -> 천이백삼십

10 lines (9 loc) 374 B
export declare const ErrorCollection: { INVALID_FORMAT: "invalid format"; OVER_MAX_NUMBER: "number is too big"; UNDER_MIN_NUMBER: "number is too small"; NOT_NUMBER: "input is not number"; NOT_INTEGER: "number is not integer"; UNKNOWN_ERROR: "unknown error"; }; export type ErrorCollectionValue = typeof ErrorCollection[keyof typeof ErrorCollection];