SourceTermAnalysisSystem_vue/node_modules/@antv/x6-common/es/animation/interp.d.ts
2026-05-15 10:22:44 +08:00

12 lines
319 B
TypeScript

export declare namespace Interp {
type Definition<T> = (from: T, to: T) => (time: number) => T;
}
export declare namespace Interp {
const number: Definition<number>;
const object: Definition<{
[key: string]: number;
}>;
const unit: Definition<string>;
const color: Definition<string>;
}