12 lines
177 B
TypeScript
12 lines
177 B
TypeScript
/**
|
|
* Some byte values, used as per STOMP specifications.
|
|
*
|
|
* Part of `@stomp/stompjs`.
|
|
*
|
|
* @internal
|
|
*/
|
|
export declare const BYTE: {
|
|
LF: string;
|
|
NULL: string;
|
|
};
|