chore: lint

This commit is contained in:
Arash Sheyda
2023-07-09 14:27:10 +03:00
parent 9c0e0baf95
commit 0cdba0d764
5 changed files with 7 additions and 3 deletions

View File

@ -25,7 +25,7 @@ export interface ClientFunctions {
export interface Collection {
name: string
fields?: {}[]
fields?: object[]
}
export interface Resource {

View File

@ -11,5 +11,5 @@ export interface NuxtDevtoolsServerContext {
refresh: (event: keyof ServerFunctions) => void
extendServerRpc: <ClientFunctions = {}, ServerFunctions = {}>(name: string, functions: ServerFunctions) => BirpcGroup<ClientFunctions, ServerFunctions>
extendServerRpc: <ClientFunctions = object, ServerFunctions = object>(name: string, functions: ServerFunctions) => BirpcGroup<ClientFunctions, ServerFunctions>
}