slice.d.ts 348 B

12345678
  1. import { DataComponent as DC } from '../runtime';
  2. import { SliceTransform } from '../spec';
  3. export type SliceOptions = Omit<SliceTransform, 'type'>;
  4. /**
  5. * Slice data between `start` ~ `end`.
  6. * Same with https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/slice
  7. */
  8. export declare const Slice: DC<SliceOptions>;