mirror of
https://github.com/whyour/qinglong.git
synced 2026-09-21 00:17:47 +08:00
7 lines
299 B
TypeScript
7 lines
299 B
TypeScript
import type { LocalExecutionContextRecipe } from '../domain/localExecutionContextRecipe';
|
|
|
|
export interface LocalExecutionContextRecipeSource {
|
|
/** Resolves one exact opaque reference and never falls back to latest. */
|
|
resolve(contextRef: string): Promise<LocalExecutionContextRecipe | null>;
|
|
}
|