UNPKG

liquibase

Version:
11 lines (10 loc) 395 B
export interface ParamsModel { [key: string]: any; } export declare type SubstitutionParamsModel = ParamsModel; declare type HasSubstitutionParams = { substitutionParams: SubstitutionParamsModel; }; export declare type WithSubstitutionParams<T> = HasSubstitutionParams & T; export declare type WithOptionalSubstitutionParams<T> = Partial<HasSubstitutionParams> & T; export {};