Files
qinglong/back/runtime/ports/localExecutionContextRecipeSource.ts
T

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>;
}