fivem-rpc/shared-types
2025-07-09 16:07:02 +01:00
..
types/types init 2025-07-08 22:27:10 +01:00
license.md init 2025-07-08 22:27:10 +01:00
package.json cleanup + better descriptions 2025-07-08 23:52:42 +01:00
readme.md docs 2025-07-09 16:07:02 +01:00

FiveM RPC Shared Types

Docs & Info

Installation

  pnpm i @entityseven/fivem-rpc-shared-types -D
  yarn add @entityseven/fivem-rpc-shared-types --dev
  bun add @entityseven/fivem-rpc-shared-types -d

Usage

This package is an enhanced type support for @entityseven/fivem-rpc. It provides ability to strictly type your events for better dx.

Example

This example is neat way to follow up but you can change it as you wish. It will use bun workspaces, pnpm workspaces work in a similar manner. Referring the following folder structure:

apps/
    - server/
        - package.json
        - tsconfig.json
    - client/
        - package.json
        - tsconfig.json
    - webview/
        - package.json
        - tsconfig.json
    - shared/ (this must be available in server, client and webview)
        - package.json

    - package.json (root package)
    - pnpm-workspace.yaml (only if using pnpm)
  • Environment folder: folder with server, client or webview code in it
  1. Install this package as dev dependency in your root package or in each environment folder separately

    apps/
        - server/ <- (if not installed root)
        - client/ <- (if not installed root)
        - webview/ <- (if not installed root)
        - shared/
    
        - package.json <- here
    
  2. In shared/ create folder fivem-rpc (or similar), inside it create index.d.ts

    apps/
        - server/ 
        - client/ 
        - webview/ 
        - shared/
            - fivem-rpc/
                - index.d.ts <- here
    
        - package.json
    
  3. In index.d.ts add following:

    declare module '@entityseven/fivem-rpc-shared-types' {
        // Client commands names 
        export type RPCCommands_Client = ''
    
        // Server commands names
        export type RPCCommands_Server = ''
    
        // Client -> Client events
        export interface RPCEvents_Client {}
    
        // Client -> Server events
        export interface RPCEvents_ClientServer {}
    
        // Client -> Webview events
        export interface RPCEvents_ClientWebview {}
    
        // Server -> Server events
        export interface RPCEvents_Server {}
    
        // Server -> Client events
        export interface RPCEvents_ServerClient {}
    
        // Server -> Server events
        export interface RPCEvents_ServerWebview {}
    
        // Webview -> Webview events
        export interface RPCEvents_Webview {}
    
        // Webview -> Client events
        export interface RPCEvents_WebviewClient {}
    
        // Webview -> Server events
        export interface RPCEvents_WebviewServer {}
    }
    
  4. We just created a declaration which will overwrite types from the package. Now we need our packages to refer to these types when linting rpc functions. To do this in each environment folder of your project in tsconfig.json do these:

    {
        "compilerOptions": {
            "types": [
                "../shared/fivem-rpc/" // or your specific folder
            ]
        } 
    }
    
  5. We also need to populate interfaces we created in step 3.

  • RPCCommands_Client and RPCCommands_Server will include your commands names an union strings:

    export type RPCCommands_Client = 'afk' | 'vanish' | '...' // example names
    export type RPCCommands_Server = 'report' | 'ban' | '...' // example names
    
  • Other interfaces will include your events types. The example will show one but all of the work same way

    export interface RPCEvents_ClientServer {
        clientToServerEventName(data: string, moreData: boolean): number
        "client-to-server-event-name"(data: string, moreData: boolean): number // can also include characters you cannot use as variable or function names
    }
    
    • clientToServerEventName or client-to-server-event-name is an event name
    • data and moreData are the arguments you need to pass when calling an event and argument you will receive when listening (may also include extra, as player, check type hints)
    • number is a return type that will be forwarded back to caller

    Doing this will create type hints for you:

    // assuming this is in client
    const response /* number */ = await rpc.emitServer(
    'clientToServerEventName', /* suggested name */
    'data', /* will pass typecheck */
    'moreData', /* will NOT pass typecheck, since required type is `boolean` */
    )
    

Example (alternative)

If previous example does not work or you do not like you can also try it this way. Steps that are not mentioned are the same as previous

  1. In shared/ create folders declarations/fivem-rpc, inside it create index.d.ts

    apps/
        - server/ 
        - client/ 
        - webview/ 
        - shared/
            - declarations/
               - fivem-rpc/
                   - index.d.ts <- here
    
        - package.json
    
  2. We just created a declaration which will overwrite types from the package. Now we need our packages to refer to these types when linting rpc functions. To do this in each environment folder of your project in tsconfig.json do these:

    {
        "compilerOptions": {
            "typeRoots": [
                "../shared/declarations/", // or your specific folder
                "../../node_modules/@types", // you may also want to add this if some of your other libraries are not showing types now
            ]
        } 
    }
    

If a any point this stops working for you, do your research on how to redeclare library types and refer to it