@kui-shell/plugin-client-common
Version:
Kui plugin that offers stylesheets
11 lines (10 loc) • 435 B
TypeScript
import type { Arguments } from '@kui-shell/core';
export declare function join(a: string, b: string): string;
export declare function filepathForResponses(filepath: string): string;
export default function fetchMarkdownFile(filepath: string, args: Pick<Arguments, 'REPL'>): Promise<{
data: string;
codeBlockResponses: {
status: "done" | "error";
response: import("@kui-shell/core").KResponse<any>;
}[];
}>;