UNPKG
earl-lang
Version:
latest (2.0.3)
2.0.3
Earl Bahasa Pemrograman Alur Kerja
earl-lang
/
type.ts
11 lines
(10 loc)
•
231 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
interface
Context
{
index
:
number
;
lines
:
string
[]; [
key
:
string
]:
any
; }
export
type
PearlModule
=
(
tokens
:
string
[],
modules
:
Record
<
string
,
PearlModule
>,
context
:
Context
) =>
void
|
Promise
<
void
>;