@exodus/networking-common
Version:
Platform-agnostic interfaces and common utilities to be used across our networking modules
6 lines (5 loc) • 305 B
TypeScript
declare const CONTROL_CHARACTERS: readonly string[];
declare const SEPARATORS: readonly string[];
declare const FORBIDDEN_IN_VALUE: Set<string>;
declare const CONTROL_CHARACTERS_AND_SEPARATORS: Set<string>;
export { SEPARATORS, CONTROL_CHARACTERS, CONTROL_CHARACTERS_AND_SEPARATORS, FORBIDDEN_IN_VALUE };