You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
391 B
11 lines
391 B
4 weeks ago
|
import * as METADATA_KEY from "../constants/metadata_keys";
|
||
|
import { Metadata } from "../planning/metadata";
|
||
|
import { tagParameter } from "./decorator_utils";
|
||
|
function unmanaged() {
|
||
|
return function (target, targetKey, index) {
|
||
|
var metadata = new Metadata(METADATA_KEY.UNMANAGED_TAG, true);
|
||
|
tagParameter(target, targetKey, index, metadata);
|
||
|
};
|
||
|
}
|
||
|
export { unmanaged };
|