@antv/f2
Version:
Charts for mobile visualization.
14 lines (13 loc) • 367 B
TypeScript
import { TickMethod } from '../types';
/**
* 获取计算 ticks 的方法
* @param key 键值
* @returns 计算 ticks 的方法
*/
export declare function getTickMethod(key: string): TickMethod;
/**
* 注册计算 ticks 的方法
* @param key 键值
* @param method 方法
*/
export declare function registerTickMethod(key: string, method: TickMethod): void;