mirror of
https://gitee.com/likeadmin/likeadmin_java.git
synced 2026-06-24 20:04:29 +08:00
12 lines
197 B
TypeScript
12 lines
197 B
TypeScript
export enum LinkTypeEnum {
|
|
'SHOP_PAGES' = 'shop',
|
|
'CUSTOM_LINK' = 'custom'
|
|
}
|
|
|
|
export interface Link {
|
|
path: string
|
|
name?: string
|
|
type: string
|
|
params?: Record<string, any>
|
|
}
|