UNPKG

398 BTypeScriptView Raw
1import Adjust, { AdjustConstructor } from './adjusts/adjust';
2/**
3 * 根据类型获取 Adjust 类
4 * @param type
5 */
6declare const getAdjust: (type: string) => AdjustConstructor;
7/**
8 * 注册自定义 Adjust
9 * @param type
10 * @param ctor
11 */
12declare const registerAdjust: (type: string, ctor: AdjustConstructor) => void;
13export { getAdjust, registerAdjust, Adjust };
14export * from './interface';