UNPKG

@adguard/agtree

Version:
15 lines (14 loc) 1.03 kB
/** * @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';