13 lines
272 B
TypeScript
13 lines
272 B
TypeScript
import 'fastify';
|
|
import type { StashRuntime } from '@morten-olsen/stash-runtime';
|
|
|
|
// eslint-disable-next-line
|
|
declare type ExplicitAny = any;
|
|
|
|
declare module 'fastify' {
|
|
// eslint-disable-next-line
|
|
export interface FastifyInstance {
|
|
runtime: StashRuntime;
|
|
}
|
|
}
|