mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-05 23:53:21 +00:00
* initial implementation * next iteration * clean up * cleanup * fix test * cleanup * rename services, refactor, fix test logic * fix DI * update comment * update comment * resolve merge conflict * register dependencies out of jslib, more cleanup * fix failing test in build * fix type error * try fixing test error * remove async from test setup * attempt to fix test * fix text * fix test * add ts-expect-error comment * cleanup --------- Co-authored-by: bnagawiecki <107435978+bnagawiecki@users.noreply.github.com>
7 lines
246 B
TypeScript
7 lines
246 B
TypeScript
import { DirectoryType } from "@/src/enums/directoryType";
|
|
import { IDirectoryService } from "@/src/services/directory.service";
|
|
|
|
export abstract class DirectoryFactoryService {
|
|
abstract createService(type: DirectoryType): IDirectoryService;
|
|
}
|