sheet-preview.operation.ts 338 B

12345678910111213
  1. import type { IAccessor, ICommand } from '@univerjs/core';
  2. import { CommandType } from '@univerjs/core';
  3. import { JnpfCommandIds } from '../../utils/define';
  4. export const JnpfSheetsPreviewOperation: ICommand = {
  5. handler: async (_: IAccessor) => {
  6. return true;
  7. },
  8. id: JnpfCommandIds.preview,
  9. type: CommandType.OPERATION,
  10. };