mirror of
https://gitee.com/antv/g6.git
synced 2024-12-05 13:18:40 +08:00
bfbade2541
* refactor: extract api * feat: generate behavior api docs by code annotations
9 lines
217 B
TypeScript
9 lines
217 B
TypeScript
/**
|
|
* @file Generate API Markdown documentation from the API Document Model files
|
|
*/
|
|
import { MarkdownAction } from '../src/MarkdownAction';
|
|
|
|
(function runApiDocumenter() {
|
|
new MarkdownAction().onExecute();
|
|
})();
|