Documentation
    Preparing search index...

    Type Alias Group

    Group: RequiredProperties<GroupArgument, "middlewares" | "pathOptions"> & {
        _group: string;
    }
    import type { Group } from '@chubbyts/chubbyts-framework/dist/router/group';

    const group: Group = {
    path: '/api/users',
    children: [listRoute, createRoute, readRoute, updateRoute, deleteRoute],
    middlewares: [],
    pathOptions: {},
    _group: 'Group',
    }