1
0
mirror of https://github.com/tooot-app/app synced 2025-06-05 22:19:13 +02:00

Added notifications filter

This commit is contained in:
Zhiyuan Zheng
2021-03-17 15:30:28 +01:00
parent d03d5600ec
commit 03b312fefe
20 changed files with 390 additions and 64 deletions

View File

@ -9,7 +9,7 @@ export type Params = {
domain?: string
url: string
params?: {
[key: string]: string | number | boolean
[key: string]: string | number | boolean | string[] | number[] | boolean[]
}
headers?: { [key: string]: string }
body?: FormData | Object

View File

@ -10,7 +10,7 @@ export type Params = {
version?: 'v1' | 'v2'
url: string
params?: {
[key: string]: string | number | boolean
[key: string]: string | number | boolean | string[] | number[] | boolean[]
}
headers?: { [key: string]: string }
body?: FormData