UNPKG
@fastify/flash
Version:
latest (6.0.3)
next (6.0.0)
6.0.3
6.0.2
6.0.1
6.0.0
6.0.0-pre.fv5.2
6.0.0-pre.fv5.1
5.2.0
5.1.0
5.0.0
4.0.1
4.0.0
Flash message plugin for fastify.
github.com/fastify/fastify-flash
fastify/fastify-flash
@fastify/flash
/
lib
/
flash.d.ts
9 lines
(8 loc)
•
239 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
type
ReplyReturn
= { [
k
:
string
]:
string
[] |
undefined
; } |
string
[];
export
declare
function
flashFactory
(
): {
request
(
type
:
string
, ...
message
:
string
[] | [
string
[]]):
number
;
reply
(
type
?:
string
):
ReplyReturn
; };
export
{};