upd (fw):

- moved internal client events from extendable types
This commit is contained in:
2025-01-30 19:03:30 +00:00
parent e29dc20398
commit 7a37aa390e
2 changed files with 14 additions and 7 deletions
+3 -4
View File
@@ -1,14 +1,13 @@
declare module '@entityseven/rage-fw-shared-types' {
export interface RageFW_ICustomServerEvent {
customServerEvent(arg1: string, arg2: number): boolean
// customServerEvent(arg1: string, arg2: number): boolean // example event
}
export interface RageFW_ICustomClientEvent {
cefReady(): void
customClientEvent(arg1: string, arg2: number): boolean
// customClientEvent(arg1: string, arg2: number): boolean // example event
}
export interface RageFW_ICustomBrowserEvent {
customCefEvent(arg1: string, arg2: number): boolean
// customCefEvent(arg1: string, arg2: number): boolean // example event
}
}