UNPKG

863 BSource Map (JSON)View Raw
1{"version":3,"file":"trigger.class.js","sourceRoot":"","sources":["../../src/utils/trigger.class.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;IAIE,iBAAmB,IAAY,EAAE,KAAc;QAC7C,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,IAAI,CAAC,KAAK,GAAG,KAAK,IAAI,IAAI,CAAC;IAC7B,CAAC;IAEM,0BAAQ,GAAf,cAA6B,MAAM,CAAC,IAAI,CAAC,IAAI,KAAK,QAAQ,IAAI,IAAI,CAAC,KAAK,KAAK,QAAQ,CAAC,CAAC,CAAC;IAC1F,cAAC;AAAD,CAAC,AAVD,IAUC","sourcesContent":["/**\n * @copyright Valor Software\n * @copyright Angular ng-bootstrap team\n */\n\nexport class Trigger {\n public open: string;\n public close?: string;\n\n public constructor(open: string, close?: string) {\n this.open = open;\n this.close = close || open;\n }\n\n public isManual(): boolean { return this.open === 'manual' || this.close === 'manual'; }\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"]}
\No newline at end of file