Skip to content

Commit 2384dda

Browse files
committed
test: add input messages
1 parent dd675c9 commit 2384dda

File tree

9 files changed

+294
-76
lines changed

9 files changed

+294
-76
lines changed

dist-test/entry.messages.js

Lines changed: 4 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist-test/entry.messages.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist-test/input.messages.d.ts

Lines changed: 132 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
declare const _default: {
2+
print: boolean;
3+
pattern: string;
4+
allow: {
5+
missing: boolean;
6+
};
7+
calls: ({
8+
name: string;
9+
pattern: string;
10+
params: {
11+
account?: undefined;
12+
};
13+
out: {
14+
ok: boolean;
15+
why: string;
16+
account?: undefined;
17+
};
18+
} | {
19+
name: string;
20+
pattern: string;
21+
params: {
22+
account: {
23+
path: string;
24+
name: string;
25+
normal: string;
26+
oref?: undefined;
27+
id$?: undefined;
28+
org_id?: undefined;
29+
};
30+
};
31+
out: {
32+
ok: boolean;
33+
why: string;
34+
account?: undefined;
35+
};
36+
} | {
37+
name: string;
38+
pattern: string;
39+
params: {
40+
account: {
41+
oref: string;
42+
path: string;
43+
normal: string;
44+
name?: undefined;
45+
id$?: undefined;
46+
org_id?: undefined;
47+
};
48+
};
49+
out: {
50+
ok: boolean;
51+
why: string;
52+
account?: undefined;
53+
};
54+
} | {
55+
name: string;
56+
pattern: string;
57+
params: {
58+
account: {
59+
oref: string;
60+
path: string;
61+
name: string;
62+
normal: string;
63+
id$?: undefined;
64+
org_id?: undefined;
65+
};
66+
};
67+
out: {
68+
ok: boolean;
69+
why: string;
70+
account?: undefined;
71+
};
72+
} | {
73+
name: string;
74+
pattern: string;
75+
params: {
76+
account: {
77+
id$: string;
78+
oref: string;
79+
path: string[];
80+
name: string;
81+
normal: string;
82+
org_id?: undefined;
83+
};
84+
};
85+
out: {
86+
ok: boolean;
87+
account: {
88+
id: string;
89+
path0: string;
90+
path1: string;
91+
path2: string;
92+
org_id: string;
93+
oref: string;
94+
aref: string;
95+
path: string[];
96+
name: string;
97+
normal: string;
98+
};
99+
why?: undefined;
100+
};
101+
} | {
102+
name: string;
103+
pattern: string;
104+
params: {
105+
account: {
106+
id$: string;
107+
org_id: string;
108+
path: string;
109+
name: string;
110+
normal: string;
111+
oref?: undefined;
112+
};
113+
};
114+
out: {
115+
ok: boolean;
116+
account: {
117+
id: string;
118+
path0: string;
119+
path1: string;
120+
path2: string;
121+
org_id: string;
122+
oref: string;
123+
aref: string;
124+
path: string[];
125+
name: string;
126+
normal: string;
127+
};
128+
why?: undefined;
129+
};
130+
})[];
131+
};
132+
export default _default;

0 commit comments

Comments
 (0)