@rawcmd/core
Version:
Rawcmd core package.
12 lines (11 loc) • 354 B
TypeScript
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;
}