mirror of
https://github.com/nestjs/nest.git
synced 2026-02-21 23:11:44 +00:00
10 lines
253 B
TypeScript
10 lines
253 B
TypeScript
export interface INestFastifyApplication {
|
|
/**
|
|
* A wrapper function around native `fastify.register()` method.
|
|
* Example `app.register(require('fastify-formbody'))`
|
|
*
|
|
* @returns void
|
|
*/
|
|
register(...args: any[]): this;
|
|
}
|