UNPKG

@visactor/vmind

Version:

<div align="center"> <a href="https://github.com/VisActor#gh-light-mode-only" target="_blank"> <img alt="VisActor Logo" width="200" src="https://github.com/VisActor/.github/blob/main/profile/logo_500_200_light.svg"/> </a> <a href="https://githu

23 lines (22 loc) 689 B
/// <reference types="node" /> /// <reference types="node" /> import type { FFmpeg } from '@ffmpeg/ffmpeg'; import type { ManualTicker, DefaultTimeline } from '@visactor/vrender-core'; export type TimeType = { totalTime: number; frameArr: any[]; }; export type OuterPackages = { VChart: any; FFmpeg: FFmpeg; fetchFile: (data: string | Buffer | Blob | File) => Promise<Uint8Array>; ManualTicker: typeof ManualTicker; defaultTimeline: DefaultTimeline; createCanvas: any; }; export interface UnfoldTransformOptions { groupBy?: string[] | string; keyField: string; valueField: string; aggregateType?: 'sum' | 'min' | 'max' | 'count' | 'mean'; }