File size: 262 Bytes
23d991d | 1 2 3 4 5 6 7 | import type { StudioToolRegistry } from '../tools/registry'
import { createPlotStudioRenderTool } from './tools/plot-render-tool'
export function registerPlotStudioTools(registry: StudioToolRegistry): void {
registry.register(createPlotStudioRenderTool())
}
|