1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-16 08:13:26 +00:00

Add angular-core.noop

This commit is contained in:
Thomas Rittson
2022-03-25 13:50:26 +10:00
parent 0590d603e3
commit 20c93bf3c8

View File

@@ -0,0 +1,15 @@
function noopDecorator(target: any) {
return;
}
export function Injectable(...args: any) {
return noopDecorator;
}
export function Inject(...args: any) {
return noopDecorator;
}
export function InjectionToken(...args: any): void {
// Do nothing
}