declare enum Affix { /** * both end operation */ CIRCUMFIX = 0, /** * starting, append operation */ SUFFIX = 1, /** * ending, prepend operation */ PREFIX = 2 } export default Affix; //# sourceMappingURL=affix.d.ts.map