RocketChat/Rocket.Chat

View on GitHub
packages/core-typings/src/ldap/ILDAPCallback.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface ILDAPCallback {
    (error?: Error | null, result?: any): void;
}

export interface ILDAPPageData {
    end: boolean;
    next?: (count: number) => void;
}

export interface ILDAPPageCallback {
    (error?: Error | null, result?: any, page?: ILDAPPageData): void;
}