9 lines
226 B
TypeScript
9 lines
226 B
TypeScript
import { Type } from ".";
|
|
|
|
/**
|
|
* constructs type of utf8-string with constant byte size
|
|
* @param {number} byte_size max utf8-encoded byte size
|
|
* @returns {Type}
|
|
*/
|
|
export function ConstString(byte_size: number): Type;
|