UNPKG

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