mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2026-09-09 18:02:54 +00:00
Prettier upgrade and e2e type checks (#1522)
* upgrade prettier * noImplicitAny rule * fix type * update tsconfig * upgrade to 150 print width
This commit is contained in:
@@ -25,8 +25,7 @@
|
||||
|
||||
import { Action } from '@ngrx/store';
|
||||
|
||||
export const SET_INFO_DRAWER_METADATA_ASPECT =
|
||||
'SET_INFO_DRAWER_METADATA_ASPECT';
|
||||
export const SET_INFO_DRAWER_METADATA_ASPECT = 'SET_INFO_DRAWER_METADATA_ASPECT';
|
||||
|
||||
export class SetInfoDrawerMetadataAspectAction implements Action {
|
||||
readonly type = SET_INFO_DRAWER_METADATA_ASPECT;
|
||||
|
||||
@@ -35,10 +35,7 @@ export enum SearchActionTypes {
|
||||
|
||||
export class SearchByTermAction implements Action {
|
||||
readonly type = SearchActionTypes.SearchByTerm;
|
||||
constructor(
|
||||
public payload: string,
|
||||
public searchOptions?: SearchOptionModel[]
|
||||
) {}
|
||||
constructor(public payload: string, public searchOptions?: SearchOptionModel[]) {}
|
||||
}
|
||||
|
||||
export class ToggleSearchFilterAction implements Action {
|
||||
|
||||
Reference in New Issue
Block a user