type ServerAction = {
  isAuth?: boolean;
};

type ServerLog = {
  type: number;
  log: any;
};

type ServerRequest<T> = {
  operation: boolean;
  message: string;
  data: T;
};

type ServerResponse = {
  operation: boolean;
  message?: string;
  error?: string;
  data?: any;
};
