UNPKG
@neurosity/sdk
Version:
latest (7.2.1)
next (6.6.0)
7.2.1
7.2.0
7.1.0
7.0.1
7.0.0
6.6.0
6.5.11
6.5.10
6.5.9
6.5.8
6.5.7
6.5.6
6.5.5
6.5.4
6.5.4-next.0
6.5.3
6.5.2
6.5.1
6.5.0
6.4.1
6.4.0
6.4.0-next.1
6.4.0-next.0
6.3.0
6.2.4
6.2.3
6.2.2
6.2.1
6.2.1-next.2
6.2.1-next.1
6.2.1-next.0
6.2.0
6.1.1
6.0.0
6.0.0-next.13
6.0.0-next.12
6.0.0-next.11
Neurosity SDK
docs.neurosity.co
neurosity/neurosity-sdk-js
@neurosity/sdk
/
dist
/
esm
/
types
/
sample.d.ts
16 lines
(15 loc)
•
249 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import
{
Marker
}
from
"./marker"
;
/** *
@hidden
*/
export
declare
type
Sample
= {
data
:
number
[];
timestamp
:
number
;
count
?:
number
;
marker
?:
Marker
;
info
?:
any
; };
/** *
@hidden
*/
export
declare
type
CSVSample
=
number
[];