Files
bob/packages/algorithm/src/plugins/index.ts
Morten Olsen 4b859b29fc feat: init
2023-09-06 11:23:23 +02:00

10 lines
248 B
TypeScript

import { Attributes } from '../types/node';
import { Plugin } from '../types/plugin';
import { transport } from './transport';
const plugins = {
transport,
} satisfies Record<string, (...args: any[]) => Plugin<Attributes>>;
export { plugins };