10 lines
273 B
TypeScript
10 lines
273 B
TypeScript
import type { AutoLinkOptions } from '../../shared';
|
|
/**
|
|
* Resolve AutoLink props from string
|
|
*
|
|
* @example
|
|
* - Input: '/README.md'
|
|
* - Output: { text: 'Home', link: '/' }
|
|
*/
|
|
export declare const getAutoLink: (config: string, currentPath?: string) => AutoLinkOptions;
|