import type { IAccessor, ICommand } from '@univerjs/core';

import { CommandType } from '@univerjs/core';

import { JnpfCommandIds } from '../../utils/define';

export const JnpfSheetsPreviewOperation: ICommand = {
  handler: async (_: IAccessor) => {
    return true;
  },
  id: JnpfCommandIds.preview,
  type: CommandType.OPERATION,
};
