mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 07:48:37 +01:00
7 lines
205 B
TypeScript
7 lines
205 B
TypeScript
|
|
let registered = false;
|
|
export async function registerChartComponents() {
|
|
if (registered) return;
|
|
console.log('registerChartComponents is deprecated. Plugin is now used');
|
|
registered = true;
|
|
} |