Files
brave-core/components/definitions/adBlock.d.ts
T
Simon Hong 945298693f Fix renderer crash from adblock page
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.
2021-02-04 10:49:36 +09:00

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
}
}