mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-25 06:15:46 +00:00
76 lines
2.0 KiB
TypeScript
76 lines
2.0 KiB
TypeScript
import type { Api as BaseAPI } from 'nocodb-sdk'
|
|
import type { UseEventBusReturn } from '@vueuse/core'
|
|
import type { UseGlobalReturn } from './composables/useGlobal/types'
|
|
import type { NocoI18n } from './lib'
|
|
import type { TabType } from './composables'
|
|
|
|
declare module '#app' {
|
|
interface NuxtApp {
|
|
$api: BaseAPI<any>
|
|
/** {@link import('./plugins/tele') Telemetry} */
|
|
$tele: {
|
|
emit: (event: string, data: any) => void
|
|
}
|
|
/** {@link import('./plugins/tele') Telemetry} Emit telemetry event */
|
|
$e: (event: string, data?: any, rootProps?: Record<string, any>) => void
|
|
/** {@link import('./plugins/report') Error reporting} Error reporting */
|
|
$report: (event: Error) => void
|
|
$state: UseGlobalReturn
|
|
$poller: {
|
|
subscribe(
|
|
topic: { id: string },
|
|
cb: (data: {
|
|
id: string
|
|
status?: string
|
|
data?: {
|
|
error?: {
|
|
message: string
|
|
}
|
|
message?: string
|
|
result?: any
|
|
}
|
|
}) => void,
|
|
_mid = 0,
|
|
): Promise<void>
|
|
unsubscribe(topic: { id: string }): Promise<void>
|
|
}
|
|
$ncSocket: {
|
|
id: () => string | null
|
|
onMessage: (evt: string, handler: (...args: any[]) => void) => string
|
|
offMessage: (listenerId: string) => void
|
|
}
|
|
$eventBus: {
|
|
smartsheetStoreEventBus: UseEventBusReturn<SmartsheetStoreEvents, any>
|
|
realtimeBaseUserEventBus: UseEventBusReturn<string, any>
|
|
realtimeViewMetaEventBus: UseEventBusReturn<string, any>
|
|
}
|
|
}
|
|
}
|
|
|
|
declare module '@vue/runtime-core' {
|
|
interface App {
|
|
i18n: NocoI18n
|
|
}
|
|
}
|
|
|
|
declare module 'vue-router' {
|
|
interface RouteMeta {
|
|
requiresAuth?: boolean
|
|
public?: boolean
|
|
hideHeader?: boolean
|
|
title?: string
|
|
allowedRoles?: Role[]
|
|
}
|
|
|
|
interface RouteParams {
|
|
baseId: string
|
|
baseType: 'base' | 'nc' | string
|
|
type: TabType
|
|
title: string
|
|
viewId: string
|
|
viewTitle: string
|
|
sourceId: string
|
|
token: string
|
|
}
|
|
}
|