11 lines
268 B
TypeScript
11 lines
268 B
TypeScript
import { LocalContext } from "@/util/local-context"
|
|
import type * as Project from "./project"
|
|
|
|
export interface InstanceContext {
|
|
directory: string
|
|
worktree: string
|
|
project: Project.Info
|
|
}
|
|
|
|
export const context = LocalContext.create<InstanceContext>("instance")
|