UNPKG

@adguard/agtree

Version:
16 lines (15 loc) 582 B
/** * 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 HintCommentMarshallingMap: { readonly Syntax: 1; readonly Children: 2; readonly Start: 3; readonly End: 4; }; export type HintCommentMarshallingMap = typeof HintCommentMarshallingMap[keyof typeof HintCommentMarshallingMap];