10 lines
160 B
TypeScript
10 lines
160 B
TypeScript
export * from './user'
|
|
export * from './course'
|
|
|
|
export type { FetchError } from 'ofetch'
|
|
|
|
export interface IBreadcrumbItem {
|
|
label: string
|
|
path?: string
|
|
}
|