UNPKG
@dragondyt/vuepress-plugin-abbrlink
Version:
latest (0.0.2-beta.0)
next (1.0.1-beta.10)
1.0.1-beta.10
1.0.1-beta.9
1.0.1-beta.8
1.0.1-beta.7
1.0.1-beta.6
1.0.1-beta.5
1.0.1-beta.4
1.0.1-beta.3
1.0.1-beta.2
1.0.1-beta.1
1.0.1-beta.0
0.0.2-beta.0
VuePress plugin - abbrLink
github.com/dragondyt/vuepress
dragondyt/vuepress
@dragondyt/vuepress-plugin-abbrlink
/
lib
/
node
/
abbrLinkPlugin.d.ts
9 lines
(8 loc)
•
280 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
type
{
Plugin
}
from
'@vuepress/core'
;
export
interface
AbbrLinkPluginOptions
{
alg
?:
'crc16'
|
'crc32'
;
autoDate
?:
boolean
;
force
?:
boolean
;
rep
?:
string
; }
export
declare
const
abbrLinkPlugin
:
(
{ alg, autoDate, force }?:
AbbrLinkPluginOptions
) =>
Plugin
;