From 282fc7e05bc42559c5f84730a51c685974a882fc Mon Sep 17 00:00:00 2001 From: Kulshekhar Kabra Date: Tue, 14 Feb 2017 15:36:33 +0530 Subject: [PATCH] Add 'shape' property to the Matrix class --- vectorious/index.d.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/vectorious/index.d.ts b/vectorious/index.d.ts index 63b53d20bf..c68e87236c 100644 --- a/vectorious/index.d.ts +++ b/vectorious/index.d.ts @@ -269,6 +269,8 @@ export class Vector { export class Matrix { T: Matrix; + + shape: number[]; /** * @method constructor @@ -586,4 +588,4 @@ export class Matrix { public toArray (): number[][]; } -export class BLAS {} \ No newline at end of file +export class BLAS {}