liquibase
Version:
Node.js wrapper for Liquibase
11 lines (10 loc) • 395 B
TypeScript
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 {};