5 lines
109 B
TypeScript
5 lines
109 B
TypeScript
export declare function byteLength(str: string | {
|
|
toString(): string;
|
|
[x: string]: any;
|
|
}): number;
|