UNPKG

recoder-code

Version:

Complete AI-powered development platform with ML model training, plugin registry, real-time collaboration, monitoring, infrastructure automation, and enterprise deployment capabilities

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 {};