mirror of
https://github.com/diced/zipline.git
synced 2025-12-21 14:50:50 -08:00
11 lines
332 B
TypeScript
11 lines
332 B
TypeScript
import { FastifyInstance } from "fastify";
|
|
import Server from "next/dist/next-server/server/next-server";
|
|
import { Connection } from "typeorm";
|
|
import { Config } from "../Config";
|
|
|
|
export interface Plugin {
|
|
name: string;
|
|
priority?: number;
|
|
|
|
onLoad(server: FastifyInstance, orm: Connection, app: Server, config: Config): any;
|
|
} |