Documentation and made Option values optional

This commit is contained in:
Dolan
2017-06-09 01:41:43 +01:00
parent 41256279f0
commit 93a3dc1f47
11 changed files with 170 additions and 32 deletions

View File

@@ -1,7 +1,25 @@
import { Oid } from './oid';
export class Oidarray {
/**
*
*
*
* @memberof Oidarray
*/
free(): void;
/**
*
*
* @type {Oid}
* @memberof Oidarray
*/
ids: Oid;
/**
*
*
* @type {number}
* @memberof Oidarray
*/
count: number;
}