@adguard/agtree
Version:
Tool set for working with adblock filter lists
16 lines (15 loc) • 596 B
TypeScript
import { type CssInjectionRuleBody } from '../../nodes/index.js';
import type { OutputByteBuffer } from '../../utils/output-byte-buffer.js';
import { BaseSerializer } from '../base-serializer.js';
/**
* Serializer for CSS injection rule body nodes.
*/
export declare class CssInjectionBodySerializer extends BaseSerializer {
/**
* Serializes a CSS injection rule body node to binary format.
*
* @param node Node to serialize.
* @param buffer ByteBuffer for writing binary data.
*/
static serialize(node: CssInjectionRuleBody, buffer: OutputByteBuffer): void;
}