import { CONSTANTS } from '../interface/exported';

/**
 * @containerfree
 *
 */
export function containerfree() {
    return function register(_class: any) {
        _class.prototype[CONSTANTS.CONTAINER_FREE] = true;
    };
}
