mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-09-14 21:09:50 +02:00
14 lines
374 B
TypeScript
14 lines
374 B
TypeScript
import { log } from '$root/logger.js';
|
|
import type { LayoutData, LayoutMethod, RenderData } from './types.js';
|
|
|
|
const performLayout = (
|
|
layoutData: LayoutData,
|
|
id: string,
|
|
_version: string,
|
|
layoutMethod: LayoutMethod
|
|
): RenderData => {
|
|
log.info('Performing layout', layoutData, id, _version, layoutMethod);
|
|
return { items: [] };
|
|
};
|
|
export default performLayout;
|