UNPKG
dify-components
Version:
latest (1.0.0)
1.0.0
This is a modern component library template based on Turborepo+Vue 3.5+TypeScript.
dify-components
/
playground
/
src
/
types
/
router.d.ts
12 lines
(9 loc)
•
289 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
type
{
Component
}
from
'vue'
;
import
type
{
RouteRecordRaw
}
from
'vue-router'
;
interface
RouteMetaCustom
extends
Record
<
string
|
number
|
symbol
,
unknown
> {
title
?:
string
;
icon
?:
Component
; }
declare
module
'vue-router'
{
interface
RouteMeta
extends
RouteMetaCustom
{} }