You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
302 B
9 lines
302 B
import type { Anchor, STDAnchor } from '../types/anchor';
|
|
/**
|
|
* <zh/> 解析原点(锚点)
|
|
*
|
|
* <en/> Parse the origin/anchor
|
|
* @param anchor - <zh/> 原点 | <en/> Anchor
|
|
* @returns <zh/> 标准原点 | <en/> Standard anchor
|
|
*/
|
|
export declare function parseAnchor(anchor: Anchor): STDAnchor;
|
|
|