mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-10-14 11:21:29 +00:00
feat: add types
This commit is contained in:
@@ -14,6 +14,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
/* eslint-disable */
|
||||
import axios from "axios";
|
||||
const CancelToken = axios.CancelToken;
|
||||
|
||||
|
@@ -141,7 +141,7 @@ class Vec3 extends Float32Array {
|
||||
return this;
|
||||
}
|
||||
/** Copy in vector data */
|
||||
copy(v: any[] | Float32Array): Vec3 {
|
||||
copy(v: number[] | Float32Array): Vec3 {
|
||||
this[0] = v[0];
|
||||
this[1] = v[1];
|
||||
this[2] = v[2];
|
||||
|
Reference in New Issue
Block a user