Fix type declarations in Api.d.ts

Fixes #1154.
pull/1155/head
Zhiming Wang 2021-04-08 16:50:24 +08:00
parent e769495181
commit 941cc2b9d9
No known key found for this signature in database
GPG Key ID: 5B58F95EC95965D8
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
export const FilterMatchMode = { export const FilterMatchMode: {
STARTS_WITH?: string, STARTS_WITH?: string,
CONTAINS?: string, CONTAINS?: string,
NOT_CONTAINS?: string, NOT_CONTAINS?: string,
@ -17,7 +17,7 @@ export const FilterMatchMode = {
DATE_AFTER?: string DATE_AFTER?: string
} }
export const FilterOperator = { export const FilterOperator: {
AND?: string, AND?: string,
OR?: string OR?: string
} }
@ -49,7 +49,7 @@ interface FilterServiceOptions {
export const FilterService: FilterServiceOptions; export const FilterService: FilterServiceOptions;
export const PrimeIcons = { export const PrimeIcons: {
ALIGN_CENTER?: string, ALIGN_CENTER?: string,
ALIGN_JUSTIFY?: string, ALIGN_JUSTIFY?: string,
ALIGN_LEFT?: string, ALIGN_LEFT?: string,