13 lines
171 B
TypeScript
13 lines
171 B
TypeScript
enum Api {
|
|
blogInfo = '/',
|
|
report = '/report'
|
|
}
|
|
|
|
/**
|
|
* 获取博客信息
|
|
* @returns 博客信息
|
|
*/
|
|
export function getBlogInfo(option: any) {
|
|
return ""
|
|
}
|