pack.d.ts 205 B

123456
  1. import { HierarchyOption } from './types';
  2. type Options = Omit<HierarchyOption, 'as'> & {
  3. as?: [string, string, string];
  4. };
  5. export declare function pack(data: any, options: Options): any[];
  6. export {};