mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-05 23:53:21 +00:00
* Lock lowdb file when using. Do not allow caching * Linter fixes * Move to non-jslib lowdbstorage to allow for lockfile * update jslib * Must ensure db file exists prior to initialization proper-lockfile throws if the file its locking does not exist * update jslib * Let base handle file initialization
7 lines
225 B
TypeScript
7 lines
225 B
TypeScript
import { GroupEntry } from '../models/groupEntry';
|
|
import { UserEntry } from '../models/userEntry';
|
|
|
|
export interface IDirectoryService {
|
|
getEntries(force: boolean, test: boolean): Promise<[GroupEntry[], UserEntry[]]>;
|
|
}
|