Skip to content

Commit

Permalink
fix silly typing error
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffomatic committed Dec 22, 2020
1 parent f903860 commit a47203d
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/types/gl-matrix/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,11 @@ declare module 'gl-matrix' {

export namespace vec3 {
export function clone(a: Immutable<vec3>): vec3
export function sub(
out: vec3,
a: Immutable<vec3>,
b: Immutable<vec3>,
c: Immutable<vec3>,
): vec3
export function sub(out: vec3, a: Immutable<vec3>, b: Immutable<vec3>): vec3
export function subtract(
out: vec3,
a: Immutable<vec3>,
b: Immutable<vec3>,
c: Immutable<vec3>,
): vec3
}

Expand Down

0 comments on commit a47203d

Please sign in to comment.