UNPKG

801 BTypeScriptView Raw
1import { IClass, IStore, Kernel } from "oly-core";
2/**
3 * Create custom kernel.
4 *
5 * @param kernel Kernel to use
6 */
7export declare const run: (kernel: IStore | Kernel) => (target: IClass) => void;
8/**
9 * Generate "it('message', () => { })".
10 *
11 * @param name Test message
12 * @param propertyKey Internal decorator stuff
13 */
14export declare const check: (name?: any, propertyKey?: string | undefined) => any;
15/**
16 * @param name Test message
17 * @param propertyKey Internal decorator stuff
18 */
19export declare const skip: (name?: any, propertyKey?: string | undefined) => any;
20/**
21 * @alias
22 */
23export declare const test: (name?: any, propertyKey?: string | undefined) => any;
24/**
25 * @alias
26 */
27export declare const spec: (name?: any, propertyKey?: string | undefined) => any;