1 |
|
2 |
|
3 |
|
4 | export declare function typescriptSourceToMarkdown(lines: string[], codeBlockAnnotations: string[]): string[];
|
5 | export interface LoadedFile {
|
6 | readonly fullPath: string;
|
7 | readonly lines: string[];
|
8 | }
|
9 | export type FileLoader = (relativePath: string) => LoadedFile;
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 |
|
16 |
|
17 |
|
18 | export declare function includeAndRenderExamples(lines: string[], loader: FileLoader, projectRoot: string): string[];
|
19 |
|
20 |
|
21 |
|
22 | export declare function loadFromFile(fileName: string): string[];
|
23 |
|
24 |
|
25 |
|
26 | export declare function contentToLines(content: string): string[];
|
27 |
|
28 |
|
29 |
|
30 | export declare function fileSystemLoader(directory: string): FileLoader;
|
31 |
|
\ | No newline at end of file |