phaser/v3/typings/math/SinCosTableGenerator.d.ts
2017-01-16 22:43:07 +01:00

5 lines
135 B
TypeScript

export default function (length: any, sinAmp: any, cosAmp: any, frequency: any): {
sin: any[];
cos: any[];
length: any;
};