UNPKG

captan

Version:

Captan — Command your ownership. A tiny, hackable CLI cap table tool.

35 lines 1.07 kB
/** * Option Grant Resource Handlers * * Handles all option grant-related commands: * - add: Grant new options * - list: List all grants * - show: Show grant details * - update: Update grant information * - delete: Remove a grant */ import type { HandlerResult } from './types.js'; export declare function handleGrantAdd(opts: { stakeholder: string; qty: string; exercise: string; pool?: string; date?: string; vestingMonths?: string; cliffMonths?: string; vestingStart?: string; noVesting?: boolean; }): HandlerResult; export declare function handleGrantList(opts: { stakeholder?: string; format?: string; }): HandlerResult; export declare function handleGrantShow(id: string | undefined, _opts: any): HandlerResult; export declare function handleGrantUpdate(id: string | undefined, opts: { vestingStart?: string; exercise?: string; }): HandlerResult; export declare function handleGrantDelete(id: string | undefined, opts: { force?: boolean; }): HandlerResult; //# sourceMappingURL=grant.handlers.d.ts.map