mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-27 19:41:44 -04:00
7 lines
181 B
TypeScript
7 lines
181 B
TypeScript
export interface Completion { name: string, description?: string }
|
|
|
|
export type CompletionFunc = (
|
|
options: Record<string, unknown>,
|
|
params: string[]
|
|
) => Promise<Completion[]>
|