UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

8 lines (7 loc) • 281 B
declare const symbol: unique symbol; export type CommandOptions<T> = T & { readonly [symbol]: true; }; export declare function commandOptions<T>(options: T): CommandOptions<T>; export declare function isCommandOptions<T>(options: any): options is CommandOptions<T>; export {};