Skip to content

Commit

Permalink
chore: export referenceable components (#4476)
Browse files Browse the repository at this point in the history
refs #4465
  • Loading branch information
seia-soto authored Nov 28, 2024
1 parent 9a35c59 commit ccf5167
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/adblocker/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export type {
} from './request.js';
export { default as CosmeticFilter } from './filters/cosmetic.js';
export { default as NetworkFilter } from './filters/network.js';
export { default as Preprocessor } from './preprocessor.js';
export {
FilterType,
detectFilterType,
Expand All @@ -33,7 +34,7 @@ export {
parseFilter,
parseFilters,
} from './lists.js';
export type { IListDiff, IRawDiff } from './lists.js';
export type { IListDiff, IRawDiff, NonSupportedFilter } from './lists.js';
export * from './fetch.js';
export { hasUnicode, tokenizeNoSkip as tokenize } from './utils.js';
export { isUTF8 } from './encoding.js';
Expand Down
2 changes: 1 addition & 1 deletion packages/adblocker/src/lists.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export function f(strings: TemplateStringsArray): NetworkFilter | CosmeticFilter
return parseFilter(strings[0]);
}

interface NonSupportedFilter {
export interface NonSupportedFilter {
lineNumber: number;
filter: string;
filterType: FilterType;
Expand Down

0 comments on commit ccf5167

Please sign in to comment.