declare enum Affix { /** * starting, append operation */ SUFFIX = 0, /** * ending, prepend operation */ PREFIX = 1, /** * both end operation */ CIRCUMFIX = 2 } export default Affix;