default: {
    update: (data: any[]) => Promise<void>;
    useSystem: () => [
        IFrontSystem,
        {
            errorSystem: Error;
            loadingSystem: boolean;
            mutateSystem: (system: IFrontMutateSystem) => Promise<void>;
        },
    ];
} = ...

Type declaration

  • update: (data: any[]) => Promise<void>
  • useSystem: () => [
        IFrontSystem,
        {
            errorSystem: Error;
            loadingSystem: boolean;
            mutateSystem: (system: IFrontMutateSystem) => Promise<void>;
        },
    ]