/** * Helper type to signal that a variable is supposed to be injected through the OSGi system. * * @typeParam T the type of the injected reference */ type InjectedReference = T | undefined; declare const _null: null; export { _null }; export type { InjectedReference };