UNPKG

@rawcmd/core

Version:
12 lines (11 loc) 354 B
export declare type CommandLinkData = (CommandLink | CommandLinkRecipe | (() => (CommandLink | CommandLinkRecipe))); export interface CommandLinkRecipe { name: string; url?: string; } export declare class CommandLink { name: string; url: string; constructor(recipe?: CommandLinkRecipe); clone(recipe?: CommandLinkRecipe): this; }