paste-mode.ts 259 B

12345678910
  1. export const PasteMode = {
  2. both: 'both',
  3. text: 'text',
  4. file: 'file',
  5. } as const;
  6. export const DEFAULT_PASTE_MODE = PasteMode.both;
  7. export const AllPasteMode = Object.values(PasteMode);
  8. export type PasteMode = typeof PasteMode[keyof typeof PasteMode];