UNPKG

372 BTypeScriptView Raw
1import { SdmContext } from "../context/SdmContext";
2/**
3 * Context for anything with parameters. All commands
4 * have parameters, as do autofixes and auto inspections.
5 */
6export interface ParametersInvocation<PARAMS> extends SdmContext {
7 /**
8 * Parameters, if any were supplied
9 */
10 parameters?: PARAMS;
11}
12//# sourceMappingURL=ParametersInvocation.d.ts.map
\No newline at end of file