mirror of
https://github.com/bspeice/speice.io
synced 2024-12-23 09:08:10 -05:00
9 lines
201 B
TypeScript
9 lines
201 B
TypeScript
|
import { Coefs } from './coefs'
|
||
|
import { Variation } from './variations'
|
||
|
|
||
|
export interface Transform {
|
||
|
coefs: Coefs,
|
||
|
variations: [number, Variation][],
|
||
|
coefsPost: Coefs,
|
||
|
color: number
|
||
|
}
|