fix https://github.com/brave/brave-browser/issues/13775 When navigting from adblock to other pages, renderer is crashed. This crash comes from referring RFH to try update stats whlie new naviagion occurs. As we don't need to show stats, stats updating logic is removed.
23 lines
407 B
TypeScript
23 lines
407 B
TypeScript
declare namespace AdBlock {
|
|
export interface ApplicationState {
|
|
adblockData: State | undefined
|
|
}
|
|
|
|
export interface State {
|
|
settings: {
|
|
customFilters: string
|
|
regionalLists: FilterList[]
|
|
}
|
|
}
|
|
|
|
export interface FilterList {
|
|
uuid: string
|
|
url: string
|
|
title: string
|
|
supportUrl: string
|
|
componentId: string
|
|
base64PublicKey: string
|
|
enabled: boolean
|
|
}
|
|
}
|