Bolos

Here, you'll find key exports for managing bolos. These exports allow you to create, update, and delete bolos as needed.


Type

type BOLO = {
    id: number,
    name: string,
    description: string,
    vehicle: string,
    date: number,
    createdAt: string,
    tag: {
        identifier: string,
        label: string,
        color: string
    },
    player: {
        identifier: string,
        name: string
    }
}

Exports

Search a bolo

Create a new Bolo

Update a Bolo

Delete an Bolo

Last updated

Was this helpful?