UNPKG

captan

Version:

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

29 lines 982 B
/** * Security Class Resource Handlers * * Handles all security class-related commands: * - add: Create a new security class * - list: List all security classes * - show: Show security class details * - update: Update security class information * - delete: Remove a security class */ import type { HandlerResult } from './types.js'; export declare function handleSecurityAdd(opts: { kind: string; label: string; authorized?: string; par?: string; }): HandlerResult; export declare function handleSecurityList(opts: { format?: string; }): HandlerResult; export declare function handleSecurityShow(id: string | undefined, _opts: any): HandlerResult; export declare function handleSecurityUpdate(id: string | undefined, opts: { authorized?: string; label?: string; }): HandlerResult; export declare function handleSecurityDelete(id: string | undefined, opts: { force?: boolean; }): HandlerResult; //# sourceMappingURL=security.handlers.d.ts.map