UNPKG
@bitblit/asyncglk
Version:
latest (0.0.10-alpha)
0.0.10-alpha
0.0.9-alpha
0.0.8-alpha
0.0.7-alpha
0.0.6
0.0.6-alpha
A Typescript Glk library
github.com/bitblit/asyncglk
bitblit/asyncglk
@bitblit/asyncglk
/
dist
/
glkapi
/
common.d.ts
8 lines
(7 loc)
•
256 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
type
{
GlkTypedArray
}
from
'../common/misc.js'
;
export
declare
function
copy_array
(
source
:
GlkTypedArray
,
target
:
number
[],
length
:
number
):
void
;
export
interface
TimerData
{
interval
:
number
;
last_interval
:
number
;
started
:
number
; }