import-mode.ts 187 B

123456
  1. export const ImportMode = {
  2. insert: 'insert',
  3. upsert: 'upsert',
  4. flushAndInsert: 'flushAndInsert',
  5. } as const;
  6. export type ImportMode = (typeof ImportMode)[keyof typeof ImportMode];