1 | export interface Subscribable {
|
2 | subscribe(observer: {
|
3 | error(err: any): void,
|
4 | complete(): void,
|
5 | }): void
|
6 | }
|
7 |
|
8 | export type Constructor = (new (...args: Array<any>) => any);
|
9 |
|
10 | /** Specify one or more expectations the thrown error must satisfy. */
|
11 | export type ThrowsExpectation = {
|
12 | /** The thrown error must have a code that equals the given string or number. */
|
13 | code?: string | number;
|
14 |
|
15 | /** The thrown error must be an instance of this constructor. */
|
16 | instanceOf?: Constructor;
|
17 |
|
18 | /** The thrown error must be strictly equal to this value. */
|
19 | is?: Error;
|
20 |
|
21 | /** The thrown error must have a message that equals the given string, or matches the regular expression. */
|
22 | message?: string | RegExp;
|
23 |
|
24 | /** The thrown error must have a name that equals the given string. */
|
25 | name?: string;
|
26 | };
|
27 |
|
28 | export type CommitDiscardOptions = {
|
29 | /**
|
30 | * Whether the logs should be included in those of the parent test.
|
31 | */
|
32 | retainLogs?: boolean
|
33 | }
|
34 |
|
35 | /** Options that can be passed to the `t.snapshot()` assertion. */
|
36 | export type SnapshotOptions = {
|
37 | /** If provided and not an empty string, used to select the snapshot to compare the `expected` value against. */
|
38 | id?: string;
|
39 | };
|
40 |
|
41 | export interface Assertions {
|
42 | /** Assert that `actual` is [truthy](https:
|
43 | assert: AssertAssertion;
|
44 |
|
45 |
|
46 | deepEqual: DeepEqualAssertion;
|
47 |
|
48 |
|
49 | fail: FailAssertion;
|
50 |
|
51 |
|
52 | false: FalseAssertion;
|
53 |
|
54 |
|
55 | falsy: FalsyAssertion;
|
56 |
|
57 | |
58 |
|
59 |
|
60 |
|
61 | is: IsAssertion;
|
62 |
|
63 | |
64 |
|
65 |
|
66 |
|
67 | not: NotAssertion;
|
68 |
|
69 |
|
70 | notDeepEqual: NotDeepEqualAssertion;
|
71 |
|
72 |
|
73 | notRegex: NotRegexAssertion;
|
74 |
|
75 |
|
76 | notThrows: NotThrowsAssertion;
|
77 |
|
78 |
|
79 | notThrowsAsync: NotThrowsAsyncAssertion;
|
80 |
|
81 |
|
82 | pass: PassAssertion;
|
83 |
|
84 |
|
85 | regex: RegexAssertion;
|
86 |
|
87 | |
88 |
|
89 |
|
90 |
|
91 |
|
92 | snapshot: SnapshotAssertion;
|
93 |
|
94 | |
95 |
|
96 |
|
97 | throws: ThrowsAssertion;
|
98 |
|
99 | |
100 |
|
101 |
|
102 |
|
103 | throwsAsync: ThrowsAsyncAssertion;
|
104 |
|
105 |
|
106 | true: TrueAssertion;
|
107 |
|
108 |
|
109 | truthy: TruthyAssertion;
|
110 | }
|
111 |
|
112 | export interface AssertAssertion {
|
113 |
|
114 | (actual: any, message?: string): void;
|
115 |
|
116 |
|
117 | skip(actual: any, message?: string): void;
|
118 | }
|
119 |
|
120 | export interface DeepEqualAssertion {
|
121 |
|
122 | <ValueType = any>(actual: ValueType, expected: ValueType, message?: string): void;
|
123 |
|
124 |
|
125 | skip(actual: any, expected: any, message?: string): void;
|
126 | }
|
127 |
|
128 | export interface FailAssertion {
|
129 |
|
130 | (message?: string): void;
|
131 |
|
132 |
|
133 | skip(message?: string): void;
|
134 | }
|
135 |
|
136 | export interface FalseAssertion {
|
137 |
|
138 | (actual: any, message?: string): void;
|
139 |
|
140 |
|
141 | skip(actual: any, message?: string): void;
|
142 | }
|
143 |
|
144 | export interface FalsyAssertion {
|
145 |
|
146 | (actual: any, message?: string): void;
|
147 |
|
148 |
|
149 | skip(actual: any, message?: string): void;
|
150 | }
|
151 |
|
152 | export interface IsAssertion {
|
153 | |
154 |
|
155 |
|
156 |
|
157 | <ValueType = any>(actual: ValueType, expected: ValueType, message?: string): void;
|
158 |
|
159 |
|
160 | skip(actual: any, expected: any, message?: string): void;
|
161 | }
|
162 |
|
163 | export interface NotAssertion {
|
164 | |
165 |
|
166 |
|
167 |
|
168 | <ValueType = any>(actual: ValueType, expected: ValueType, message?: string): void;
|
169 |
|
170 |
|
171 | skip(actual: any, expected: any, message?: string): void;
|
172 | }
|
173 |
|
174 | export interface NotDeepEqualAssertion {
|
175 |
|
176 | <ValueType = any>(actual: ValueType, expected: ValueType, message?: string): void;
|
177 |
|
178 |
|
179 | skip(actual: any, expected: any, message?: string): void;
|
180 | }
|
181 |
|
182 | export interface NotRegexAssertion {
|
183 |
|
184 | (string: string, regex: RegExp, message?: string): void;
|
185 |
|
186 |
|
187 | skip(string: string, regex: RegExp, message?: string): void;
|
188 | }
|
189 |
|
190 | export interface NotThrowsAssertion {
|
191 |
|
192 | (fn: () => any, message?: string): void;
|
193 |
|
194 |
|
195 | skip(fn: () => any, message?: string): void;
|
196 | }
|
197 |
|
198 | export interface NotThrowsAsyncAssertion {
|
199 |
|
200 | (fn: () => PromiseLike<any>, message?: string): Promise<void>;
|
201 |
|
202 |
|
203 | (promise: PromiseLike<any>, message?: string): Promise<void>;
|
204 |
|
205 |
|
206 | skip(nonThrower: any, message?: string): void;
|
207 | }
|
208 |
|
209 | export interface PassAssertion {
|
210 |
|
211 | (message?: string): void;
|
212 |
|
213 |
|
214 | skip(message?: string): void;
|
215 | }
|
216 |
|
217 | export interface RegexAssertion {
|
218 |
|
219 | (string: string, regex: RegExp, message?: string): void;
|
220 |
|
221 |
|
222 | skip(string: string, regex: RegExp, message?: string): void;
|
223 | }
|
224 |
|
225 | export interface SnapshotAssertion {
|
226 | |
227 |
|
228 |
|
229 |
|
230 |
|
231 | (expected: any, message?: string): void;
|
232 |
|
233 | |
234 |
|
235 |
|
236 |
|
237 |
|
238 | (expected: any, options: SnapshotOptions, message?: string): void;
|
239 |
|
240 |
|
241 | skip(expected: any, message?: string): void;
|
242 |
|
243 |
|
244 | skip(expected: any, options: SnapshotOptions, message?: string): void;
|
245 | }
|
246 |
|
247 | export interface ThrowsAssertion {
|
248 | |
249 |
|
250 |
|
251 |
|
252 | <ThrownError extends Error>(fn: () => any, expectations?: ThrowsExpectation | null, message?: string): ThrownError;
|
253 |
|
254 |
|
255 | skip(fn: () => any, expectations?: any, message?: string): void;
|
256 | }
|
257 |
|
258 | export interface ThrowsAsyncAssertion {
|
259 | |
260 |
|
261 |
|
262 |
|
263 | <ThrownError extends Error>(fn: () => PromiseLike<any>, expectations?: null, message?: string): Promise<ThrownError>;
|
264 |
|
265 | |
266 |
|
267 |
|
268 |
|
269 | <ThrownError extends Error>(fn: () => PromiseLike<any>, expectations: ThrowsExpectation, message?: string): Promise<ThrownError>;
|
270 |
|
271 | |
272 |
|
273 |
|
274 |
|
275 | <ThrownError extends Error>(promise: PromiseLike<any>, expectations?: null, message?: string): Promise<ThrownError>;
|
276 |
|
277 | |
278 |
|
279 |
|
280 |
|
281 | <ThrownError extends Error>(promise: PromiseLike<any>, expectations: ThrowsExpectation, message?: string): Promise<ThrownError>;
|
282 |
|
283 |
|
284 | skip(thrower: any, expectations?: any, message?: string): void;
|
285 | }
|
286 |
|
287 | export interface TrueAssertion {
|
288 |
|
289 | (actual: any, message?: string): void;
|
290 |
|
291 |
|
292 | skip(actual: any, message?: string): void;
|
293 | }
|
294 |
|
295 | export interface TruthyAssertion {
|
296 |
|
297 | (actual: any, message?: string): void;
|
298 |
|
299 |
|
300 | skip(actual: any, message?: string): void;
|
301 | }
|
302 |
|
303 |
|
304 | export interface ExecutionContext<Context = unknown> extends Assertions {
|
305 |
|
306 | context: Context;
|
307 |
|
308 |
|
309 | readonly title: string;
|
310 |
|
311 | log: LogFn;
|
312 | plan: PlanFn;
|
313 | timeout: TimeoutFn;
|
314 | try: TryFn<Context>;
|
315 | }
|
316 |
|
317 | export interface LogFn {
|
318 |
|
319 | (...values: Array<any>): void;
|
320 |
|
321 |
|
322 | skip(...values: Array<any>): void;
|
323 | }
|
324 |
|
325 | export interface PlanFn {
|
326 | |
327 |
|
328 |
|
329 |
|
330 | (count: number): void;
|
331 |
|
332 |
|
333 | skip(count: number): void;
|
334 | }
|
335 |
|
336 | export interface TimeoutFn {
|
337 | |
338 |
|
339 |
|
340 |
|
341 | (ms: number): void;
|
342 | }
|
343 |
|
344 | export interface TryFn<Context = unknown> {
|
345 | |
346 |
|
347 |
|
348 |
|
349 |
|
350 | <Args extends any[]>(title: string, fn: EitherMacro<Args, Context>, ...args: Args): Promise<TryResult>;
|
351 |
|
352 | |
353 |
|
354 |
|
355 |
|
356 |
|
357 | <Args extends any[]>(title: string, fn: [EitherMacro<Args, Context>, ...EitherMacro<Args, Context>[]], ...args: Args): Promise<TryResult[]>;
|
358 |
|
359 | |
360 |
|
361 |
|
362 |
|
363 | <Args extends any[]>(fn: EitherMacro<Args, Context>, ...args: Args): Promise<TryResult>;
|
364 |
|
365 | |
366 |
|
367 |
|
368 |
|
369 | <Args extends any[]>(fn: [EitherMacro<Args, Context>, ...EitherMacro<Args, Context>[]], ...args: Args): Promise<TryResult[]>;
|
370 | }
|
371 |
|
372 | export interface AssertionError extends Error {}
|
373 |
|
374 | export interface TryResult {
|
375 | |
376 |
|
377 |
|
378 | title: string;
|
379 |
|
380 | |
381 |
|
382 |
|
383 | passed: boolean;
|
384 |
|
385 | |
386 |
|
387 |
|
388 | errors: AssertionError[];
|
389 |
|
390 | |
391 |
|
392 |
|
393 | logs: string[];
|
394 |
|
395 | |
396 |
|
397 |
|
398 |
|
399 | commit(options?: CommitDiscardOptions): void;
|
400 |
|
401 | |
402 |
|
403 |
|
404 | discard(options?: CommitDiscardOptions): void;
|
405 | }
|
406 |
|
407 |
|
408 | export interface CbExecutionContext<Context = unknown> extends ExecutionContext<Context> {
|
409 | |
410 |
|
411 |
|
412 |
|
413 | end(error?: any): void;
|
414 | }
|
415 |
|
416 | export type ImplementationResult = PromiseLike<void> | Subscribable | void;
|
417 | export type Implementation<Context = unknown> = (t: ExecutionContext<Context>) => ImplementationResult;
|
418 | export type CbImplementation<Context = unknown> = (t: CbExecutionContext<Context>) => ImplementationResult;
|
419 |
|
420 |
|
421 | export type UntitledMacro<Args extends any[], Context = unknown> = (t: ExecutionContext<Context>, ...args: Args) => ImplementationResult;
|
422 |
|
423 |
|
424 | export type Macro<Args extends any[], Context = unknown> = UntitledMacro<Args, Context> & {
|
425 | |
426 |
|
427 |
|
428 |
|
429 | title?: (providedTitle: string | undefined, ...args: Args) => string;
|
430 | }
|
431 |
|
432 | export type EitherMacro<Args extends any[], Context> = Macro<Args, Context> | UntitledMacro<Args, Context>;
|
433 |
|
434 |
|
435 | export type OneOrMoreMacros<Args extends any[], Context> = EitherMacro<Args, Context> | [EitherMacro<Args, Context>, ...EitherMacro<Args, Context>[]];
|
436 |
|
437 |
|
438 | export type UntitledCbMacro<Args extends any[], Context = unknown> = (t: CbExecutionContext<Context>, ...args: Args) => ImplementationResult
|
439 |
|
440 |
|
441 | export type CbMacro<Args extends any[], Context = unknown> = UntitledCbMacro<Args, Context> & {
|
442 | title?: (providedTitle: string | undefined, ...args: Args) => string;
|
443 | }
|
444 |
|
445 | export type EitherCbMacro<Args extends any[], Context> = CbMacro<Args, Context> | UntitledCbMacro<Args, Context>;
|
446 |
|
447 |
|
448 | export type OneOrMoreCbMacros<Args extends any[], Context> = EitherCbMacro<Args, Context> | [EitherCbMacro<Args, Context>, ...EitherCbMacro<Args, Context>[]];
|
449 |
|
450 | export interface TestInterface<Context = unknown> {
|
451 |
|
452 | (title: string, implementation: Implementation<Context>): void;
|
453 |
|
454 |
|
455 | <T extends any[]>(title: string, macros: OneOrMoreMacros<T, Context>, ...rest: T): void
|
456 |
|
457 |
|
458 | <T extends any[]>(macros: OneOrMoreMacros<T, Context>, ...rest: T): void;
|
459 |
|
460 |
|
461 | after: AfterInterface<Context>;
|
462 |
|
463 |
|
464 | afterEach: AfterInterface<Context>;
|
465 |
|
466 |
|
467 | before: BeforeInterface<Context>;
|
468 |
|
469 |
|
470 | beforeEach: BeforeInterface<Context>;
|
471 |
|
472 |
|
473 | cb: CbInterface<Context>;
|
474 |
|
475 |
|
476 | failing: FailingInterface<Context>;
|
477 |
|
478 |
|
479 | serial: SerialInterface<Context>;
|
480 |
|
481 | only: OnlyInterface<Context>;
|
482 | skip: SkipInterface<Context>;
|
483 | todo: TodoDeclaration;
|
484 | meta: MetaInterface;
|
485 | }
|
486 |
|
487 | export interface AfterInterface<Context = unknown> {
|
488 |
|
489 | (implementation: Implementation<Context>): void;
|
490 |
|
491 |
|
492 | (title: string, implementation: Implementation<Context>): void;
|
493 |
|
494 |
|
495 | <T extends any[]>(title: string, macros: OneOrMoreMacros<T, Context>, ...rest: T): void;
|
496 |
|
497 |
|
498 | <T extends any[]>(macros: OneOrMoreMacros<T, Context>, ...rest: T): void;
|
499 |
|
500 |
|
501 | always: AlwaysInterface<Context>;
|
502 |
|
503 |
|
504 | cb: HookCbInterface<Context>;
|
505 |
|
506 | skip: HookSkipInterface<Context>;
|
507 | }
|
508 |
|
509 | export interface AlwaysInterface<Context = unknown> {
|
510 |
|
511 | (implementation: Implementation<Context>): void;
|
512 |
|
513 |
|
514 | (title: string, implementation: Implementation<Context>): void;
|
515 |
|
516 |
|
517 | <T extends any[]>(title: string, macros: OneOrMoreMacros<T, Context>, ...rest: T): void;
|
518 |
|
519 |
|
520 | <T extends any[]>(macros: OneOrMoreMacros<T, Context>, ...rest: T): void;
|
521 |
|
522 |
|
523 | cb: HookCbInterface<Context>;
|
524 |
|
525 | skip: HookSkipInterface<Context>;
|
526 | }
|
527 |
|
528 | export interface BeforeInterface<Context = unknown> {
|
529 |
|
530 | (implementation: Implementation<Context>): void;
|
531 |
|
532 |
|
533 | (title: string, implementation: Implementation<Context>): void;
|
534 |
|
535 |
|
536 | <T extends any[]>(title: string, macros: OneOrMoreMacros<T, Context>, ...rest: T): void;
|
537 |
|
538 |
|
539 | <T extends any[]>(macros: OneOrMoreMacros<T, Context>, ...rest: T): void;
|
540 |
|
541 |
|
542 | cb: HookCbInterface<Context>;
|
543 |
|
544 | skip: HookSkipInterface<Context>;
|
545 | }
|
546 |
|
547 | export interface CbInterface<Context = unknown> {
|
548 |
|
549 | (title: string, implementation: CbImplementation<Context>): void;
|
550 |
|
551 | |
552 |
|
553 |
|
554 |
|
555 | <T extends any[]>(title: string, macros: OneOrMoreCbMacros<T, Context>, ...rest: T): void;
|
556 |
|
557 | |
558 |
|
559 |
|
560 |
|
561 | <T extends any[]>(macros: OneOrMoreCbMacros<T, Context>, ...rest: T): void;
|
562 |
|
563 |
|
564 | failing: CbFailingInterface<Context>;
|
565 |
|
566 | only: CbOnlyInterface<Context>;
|
567 | skip: CbSkipInterface<Context>;
|
568 | }
|
569 |
|
570 | export interface CbFailingInterface<Context = unknown> {
|
571 |
|
572 | (title: string, implementation: CbImplementation<Context>): void;
|
573 |
|
574 | |
575 |
|
576 |
|
577 |
|
578 | <T extends any[]>(title: string, macros: OneOrMoreCbMacros<T, Context>, ...rest: T): void;
|
579 |
|
580 | |
581 |
|
582 |
|
583 |
|
584 | <T extends any[]>(macros: OneOrMoreCbMacros<T, Context>, ...rest: T): void;
|
585 |
|
586 | only: CbOnlyInterface<Context>;
|
587 | skip: CbSkipInterface<Context>;
|
588 | }
|
589 |
|
590 | export interface CbOnlyInterface<Context = unknown> {
|
591 | |
592 |
|
593 |
|
594 | (title: string, implementation: CbImplementation<Context>): void;
|
595 |
|
596 | |
597 |
|
598 |
|
599 |
|
600 | <T extends any[]>(title: string, macros: OneOrMoreCbMacros<T, Context>, ...rest: T): void;
|
601 |
|
602 | |
603 |
|
604 |
|
605 |
|
606 | <T extends any[]>(macros: OneOrMoreCbMacros<T, Context>, ...rest: T): void;
|
607 | }
|
608 |
|
609 | export interface CbSkipInterface<Context = unknown> {
|
610 |
|
611 | (title: string, implementation: CbImplementation<Context>): void;
|
612 |
|
613 |
|
614 | <T extends any[]>(title: string, macros: OneOrMoreCbMacros<T, Context>, ...rest: T): void;
|
615 |
|
616 |
|
617 | <T extends any[]>(macros: OneOrMoreCbMacros<T, Context>, ...rest: T): void;
|
618 | }
|
619 |
|
620 | export interface FailingInterface<Context = unknown> {
|
621 |
|
622 | (title: string, implementation: Implementation<Context>): void;
|
623 |
|
624 | |
625 |
|
626 |
|
627 |
|
628 | <T extends any[]>(title: string, macros: OneOrMoreMacros<T, Context>, ...rest: T): void;
|
629 |
|
630 | |
631 |
|
632 |
|
633 |
|
634 | <T extends any[]>(macros: OneOrMoreMacros<T, Context>, ...rest: T): void;
|
635 |
|
636 | only: OnlyInterface<Context>;
|
637 | skip: SkipInterface<Context>;
|
638 | }
|
639 |
|
640 | export interface HookCbInterface<Context = unknown> {
|
641 |
|
642 | (implementation: CbImplementation<Context>): void;
|
643 |
|
644 |
|
645 | (title: string, implementation: CbImplementation<Context>): void;
|
646 |
|
647 | |
648 |
|
649 |
|
650 |
|
651 | <T extends any[]>(title: string, macros: OneOrMoreCbMacros<T, Context>, ...rest: T): void;
|
652 |
|
653 | |
654 |
|
655 |
|
656 | <T extends any[]>(macros: OneOrMoreCbMacros<T, Context>, ...rest: T): void;
|
657 |
|
658 | skip: HookCbSkipInterface<Context>;
|
659 | }
|
660 |
|
661 | export interface HookCbSkipInterface<Context = unknown> {
|
662 |
|
663 | (implementation: CbImplementation<Context>): void;
|
664 |
|
665 |
|
666 | (title: string, implementation: CbImplementation<Context>): void;
|
667 |
|
668 |
|
669 | <T extends any[]>(title: string, macros: OneOrMoreCbMacros<T, Context>, ...rest: T): void;
|
670 |
|
671 |
|
672 | <T extends any[]>(macros: OneOrMoreCbMacros<T, Context>, ...rest: T): void;
|
673 | }
|
674 |
|
675 | export interface HookSkipInterface<Context = unknown> {
|
676 |
|
677 | (implementation: Implementation<Context>): void;
|
678 |
|
679 |
|
680 | (title: string, implementation: Implementation<Context>): void;
|
681 |
|
682 |
|
683 | <T extends any[]>(title: string, macros: OneOrMoreMacros<T, Context>, ...rest: T): void;
|
684 |
|
685 |
|
686 | <T extends any[]>(macros: OneOrMoreMacros<T, Context>, ...rest: T): void;
|
687 | }
|
688 |
|
689 | export interface OnlyInterface<Context = unknown> {
|
690 |
|
691 | (title: string, implementation: Implementation<Context>): void;
|
692 |
|
693 | |
694 |
|
695 |
|
696 |
|
697 | <T extends any[]>(title: string, macros: OneOrMoreMacros<T, Context>, ...rest: T): void;
|
698 |
|
699 | |
700 |
|
701 |
|
702 |
|
703 | <T extends any[]>(macros: OneOrMoreMacros<T, Context>, ...rest: T): void;
|
704 | }
|
705 |
|
706 | export interface SerialInterface<Context = unknown> {
|
707 |
|
708 | (title: string, implementation: Implementation<Context>): void;
|
709 |
|
710 |
|
711 | <T extends any[]>(title: string, macros: OneOrMoreMacros<T, Context>, ...rest: T): void;
|
712 |
|
713 | |
714 |
|
715 |
|
716 | <T extends any[]>(macros: OneOrMoreMacros<T, Context>, ...rest: T): void;
|
717 |
|
718 |
|
719 | after: AfterInterface<Context>;
|
720 |
|
721 |
|
722 | afterEach: AfterInterface<Context>;
|
723 |
|
724 |
|
725 | before: BeforeInterface<Context>;
|
726 |
|
727 |
|
728 | beforeEach: BeforeInterface<Context>;
|
729 |
|
730 |
|
731 | cb: CbInterface<Context>;
|
732 |
|
733 |
|
734 | failing: FailingInterface<Context>;
|
735 |
|
736 | only: OnlyInterface<Context>;
|
737 | skip: SkipInterface<Context>;
|
738 | todo: TodoDeclaration;
|
739 | }
|
740 |
|
741 | export interface SkipInterface<Context = unknown> {
|
742 |
|
743 | (title: string, implementation: Implementation<Context>): void;
|
744 |
|
745 |
|
746 | <T extends any[]>(title: string, macros: OneOrMoreMacros<T, Context>, ...rest: T): void;
|
747 |
|
748 |
|
749 | <T extends any[]>(macros: OneOrMoreMacros<T, Context>, ...rest: T): void;
|
750 | }
|
751 |
|
752 | export interface TodoDeclaration {
|
753 |
|
754 | (title: string): void;
|
755 | }
|
756 |
|
757 | export interface MetaInterface {
|
758 |
|
759 | file: string;
|
760 | }
|
761 |
|
762 |
|
763 | declare const test: TestInterface;
|
764 |
|
765 |
|
766 | export default test;
|
767 |
|
768 |
|
769 | export const after: AfterInterface;
|
770 |
|
771 |
|
772 | export const afterEach: AfterInterface;
|
773 |
|
774 |
|
775 | export const before: BeforeInterface;
|
776 |
|
777 |
|
778 | export const beforeEach: BeforeInterface;
|
779 |
|
780 |
|
781 | export const cb: CbInterface;
|
782 |
|
783 |
|
784 | export const failing: FailingInterface;
|
785 |
|
786 |
|
787 | export const only: OnlyInterface;
|
788 |
|
789 |
|
790 | export const serial: SerialInterface;
|
791 |
|
792 |
|
793 | export const skip: SkipInterface;
|
794 |
|
795 |
|
796 | export const todo: TodoDeclaration;
|
797 |
|
798 |
|
799 | export const meta: MetaInterface;
|
800 |
|
\ | No newline at end of file |