UNPKG

@vulcan-sql/core

Version:
10 lines (9 loc) 296 B
export declare enum ProfilesLookupType { LocalFile = "LocalFile" } /** Define the way to find profiles */ export interface ProfilesLookup { type: ProfilesLookupType | string; options: Record<string, any>; } export declare type IProfilesLookupOptions = Array<ProfilesLookup | string>;