fix: loginServiceConfiguration missing type on Accounts

This commit is contained in:
Rémy Boulanouar
2023-03-06 10:40:58 +01:00
parent 7bea0db31a
commit ae1aae6048

View File

@@ -1,5 +1,6 @@
import { Mongo } from 'meteor/mongo';
import { Meteor } from 'meteor/meteor';
import { Configuration } from 'meteor/service-configuration';
export interface URLS {
resetPassword: (token: string) => string;
@@ -57,6 +58,8 @@ export namespace Accounts {
stop: () => void;
};
var loginServiceConfiguration: Mongo.Collection<Configuration>
function loginServicesConfigured(): boolean;
function onPageLoadLogin(func: Function): void;