10 lines
187 B
TypeScript
10 lines
187 B
TypeScript
import type { CommandContext } from '@stricli/core'
|
|
|
|
export interface LocalContext extends CommandContext {}
|
|
|
|
export function buildContext(): LocalContext {
|
|
return {
|
|
process,
|
|
}
|
|
}
|