pack.d.ts 299 B

12345678
  1. import { TransformComponent as TC } from '../runtime';
  2. export type PackOptions = Record<string, unknown>;
  3. /**
  4. * Uniform pack to avid overlap.
  5. * @todo Improve or change algorithm to increase space usage.
  6. * @todo Take some special case into account.
  7. */
  8. export declare const Pack: TC<PackOptions>;