@vulcan-sql/core
Version:
Core package of VulcanSQL
10 lines (9 loc) • 455 B
TypeScript
import { Profile, ProfileReader } from '../../../models/index';
import { ProfilesLookupOptions } from '../../../options/index';
import { interfaces } from 'inversify';
export declare class ProfileLoader {
private profileReaderFactory;
private profilesLookupOptions;
constructor(profileReaderFactory: interfaces.AutoNamedFactory<ProfileReader>, profilesLookupOptions: ProfilesLookupOptions);
getProfiles(): Promise<Map<string, Profile>>;
}