7 lines
206 B
TypeScript
7 lines
206 B
TypeScript
import type { ComputedRef } from 'vue';
|
|
import type { NavbarItem } from '../typings.js';
|
|
/**
|
|
* Get navbar config of repository link
|
|
*/
|
|
export declare const useNavbarRepo: () => ComputedRef<NavbarItem[]>;
|