feat: init

This commit is contained in:
Morten Olsen
2023-09-06 10:56:36 +02:00
commit 4b859b29fc
55 changed files with 6099 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
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 };