@adguard/agtree
Version:
Tool set for working with adblock filter lists
15 lines (14 loc) • 562 B
TypeScript
/**
* Property map for binary serialization. This helps to reduce the size of the serialized data,
* as it allows us to use a single byte to represent a property.
*
* ! IMPORTANT: If you change values here, please update the {@link BINARY_SCHEMA_VERSION}!
*
* @note Only 256 values can be represented this way.
*/
export declare const AgentCommentMarshallingMap: {
readonly Children: 1;
readonly Start: 2;
readonly End: 3;
};
export type AgentCommentMarshallingMap = typeof AgentCommentMarshallingMap[keyof typeof AgentCommentMarshallingMap];