For the complete documentation index, see llms.txt. This page is also available as Markdown.

Charges

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


Type

type Charge = {
    id: number,
    name: string,
    description: string,
    jail?: number,
    fine?: number,
    createdAt: string,
    tag: {
        identifier: string,
        label: string,
        color: string
    }
}

Exports

Search for a charge

Create a new charge

Update a charge

Delete a charge

Last updated