Merge pull request #1155 from zmwangx/api-fix-ts-declarations
Fix type declarations in Api.d.tspull/1088/head
commit
5a5111e021
|
@ -1,4 +1,4 @@
|
|||
export const FilterMatchMode = {
|
||||
export const FilterMatchMode: {
|
||||
STARTS_WITH?: string,
|
||||
CONTAINS?: string,
|
||||
NOT_CONTAINS?: string,
|
||||
|
@ -17,7 +17,7 @@ export const FilterMatchMode = {
|
|||
DATE_AFTER?: string
|
||||
}
|
||||
|
||||
export const FilterOperator = {
|
||||
export const FilterOperator: {
|
||||
AND?: string,
|
||||
OR?: string
|
||||
}
|
||||
|
@ -49,7 +49,7 @@ interface FilterServiceOptions {
|
|||
|
||||
export const FilterService: FilterServiceOptions;
|
||||
|
||||
export const PrimeIcons = {
|
||||
export const PrimeIcons: {
|
||||
ALIGN_CENTER?: string,
|
||||
ALIGN_JUSTIFY?: string,
|
||||
ALIGN_LEFT?: string,
|
||||
|
|
Loading…
Reference in New Issue