7 lines
252 B
TypeScript
7 lines
252 B
TypeScript
import { GenericConfigObject } from './mergeOptions';
|
|
export declare type Deprecation = {
|
|
old: string;
|
|
new: string;
|
|
};
|
|
export default function deprecateOptions(options: GenericConfigObject, deprecateConfig: GenericConfigObject): Deprecation[];
|