mirror of
https://github.com/github/codeql-action.git
synced 2025-12-27 09:40:17 +08:00
13 lines
386 B
TypeScript
13 lines
386 B
TypeScript
import type {TestFn} from './types/test-fn';
|
|
|
|
export * from './types/assertions';
|
|
export * from './types/try-fn';
|
|
export * from './types/test-fn';
|
|
export * from './types/subscribable';
|
|
|
|
/** 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;
|