UNPKG

909 BSource Map (JSON)View Raw
1{"version":3,"file":"content-ref.class.js","sourceRoot":"","sources":["../../src/component-loader/content-ref.class.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAIH;IAKE,oBAAoB,KAAY,EAAG,OAAiB,EAAG,YAAgC;QACrF,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QACnB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,YAAY,GAAG,YAAY,CAAC;IACnC,CAAC;IACH,iBAAC;AAAD,CAAC,AAVD,IAUC","sourcesContent":["/**\n * @copyright Valor Software\n * @copyright Angular ng-bootstrap team\n */\n\nimport { ComponentRef, ViewRef } from '@angular/core';\n\nexport class ContentRef {\n public nodes: any[];\n public viewRef?: ViewRef;\n public componentRef?: ComponentRef<any>;\n\n public constructor( nodes: any[], viewRef?: ViewRef, componentRef?: ComponentRef<any>) {\n this.nodes = nodes;\n this.viewRef = viewRef;\n this.componentRef = componentRef;\n }\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"]}
\No newline at end of file