Files
languageservices/actions-languageservice/src/context-providers/config.ts
T

11 lines
347 B
TypeScript

import {DescriptionDictionary} from "@github/actions-expressions";
import {WorkflowContext} from "../context/workflow-context";
export type ContextProviderConfig = {
getContext: (
name: string,
defaultContext: DescriptionDictionary | undefined,
workflowContext: WorkflowContext
) => Promise<DescriptionDictionary | undefined>;
};