mirror of
https://github.com/github/codeql-action.git
synced 2025-12-26 17:20:10 +08:00
13 lines
411 B
TypeScript
13 lines
411 B
TypeScript
import type {TestFn} from '../types/test-fn.cjs';
|
|
|
|
export * from '../types/assertions.cjs';
|
|
export * from '../types/try-fn.cjs';
|
|
export * from '../types/test-fn.cjs';
|
|
export * from '../types/subscribable.cjs';
|
|
|
|
/** Call to declare a test, or chain to declare hooks or test modifiers */
|
|
declare const test: TestFn;
|
|
|
|
/** Call to declare a test, or chain to declare hooks or test modifiers */
|
|
export default test;
|