Chore: fix invalid type name on TS file (#21814)

pull/21801/head^2
pierre-lehnen-rc 4 years ago committed by GitHub
parent 6e4f061251
commit edd40f9cac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/meteor-accounts-saml/server/lib/Utils.ts

@ -10,7 +10,7 @@ import { StatusCode } from './constants';
// @ToDo remove this ts-ignore someday
// @ts-ignore skip checking if Logger exists to avoid having to import the Logger class here (it would bring a lot of baggage with its dependencies, affecting the unit tests)
type NullableLogger = Logger | Null;
type NullableLogger = Logger | null;
let providerList: Array<IServiceProviderOptions> = [];
let debug = false;

Loading…
Cancel
Save