mirror of
https://github.com/morten-olsen/bob.git
synced 2026-02-08 01:46:29 +01:00
10 lines
248 B
TypeScript
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 };
|