forest-cli
Version:
The Lumberjacks' toolbelt is the Forest CLI which makes easy to manage your back office application directly from the terminal.
14 lines • 491 B
TypeScript
import type { LayoutScope } from './types';
export type ResolveCommandScopeOptions = {
baseEnv: Record<string, unknown> & {
FOREST_SERVER_URL: string;
};
flags: {
env?: string;
projectId?: number;
team?: string;
};
};
/** Resolve the full layout scope for a command run (ids + names). */
export declare function resolveCommandScope(options: ResolveCommandScopeOptions): Promise<LayoutScope>;
//# sourceMappingURL=resolve-command-scope.d.ts.map