@adguard/agtree
Version:
Tool set for working with adblock filter lists
15 lines (14 loc) • 1.03 kB
TypeScript
/**
* @file Compatibility tables variables and types reexport.
*/
export { modifiersCompatibilityTable } from './modifiers.js';
export { redirectsCompatibilityTable } from './redirects.js';
export { scriptletsCompatibilityTable } from './scriptlets.js';
export * from './types.js';
export * from './platforms.js';
export type { ProductRecords, RowByProduct, RowsByProduct, } from './base.js';
export { parseRawPlatforms, stringifyPlatforms, PLATFORM_NEGATION, PLATFORM_SEPARATOR, } from './schemas/index.js';
export { isGenericPlatform, hasPlatformMultipleProducts, getProductGenericPlatforms, getProductSpecificPlatforms, platformToAdblockProduct, getPlatformsByProduct, getPlatformId, getSpecificPlatformName, getHumanReadablePlatformName, getAllPlatformNames, } from './utils/platform-helpers.js';
export type { PlatformsByProduct } from './utils/platform-helpers.js';
export { ResourceType, } from './schemas/resource-type.js';
export { getResourceTypeModifier, isValidResourceType, } from './utils/resource-type-helpers.js';