mirror of
https://github.com/github/codeql-action.git
synced 2025-12-31 03:30:14 +08:00
8 lines
184 B
TypeScript
8 lines
184 B
TypeScript
import type {StateChangeEvent} from '../types/state-change-events.d.cts';
|
|
|
|
export type Event = StateChangeEvent;
|
|
|
|
export type ObservedRun = {
|
|
events: AsyncIterableIterator<Event>;
|
|
};
|