UNPKG

ngx-decorate

Version:

Useful decorators for Angular 2 and above

11 lines 464 B
import { mkPropertyKeyDecorator } from './lib/mkPropertyKeyDecorator'; import { _complete } from './lib/symbols'; import { complete } from './processors/complete'; /** * Automatically completes the subjects and event emitters at this property. * The property can be either a single object or an array of objects. */ export function Complete() { return mkPropertyKeyDecorator(_complete, complete, 3 /* POST_DESTROY */); } //# sourceMappingURL=Complete.js.map