import { AnyU8a, Codec, IHash } from '../types'; /** * @name Text * @description * This is a string wrapper, along with the length. It is used both for strings as well * as items such as documentation. It simply extends the standard JS `String` built-in * object, inheriting all methods exposed from `String`. * @noInheritDoc */ export default class Text extends String implements Codec { constructor(value?: Text | string | AnyU8a | { toString: () => string; }); private static decodeText; /** * @description The length of the value when encoded as a Uint8Array */ readonly encodedLength: number; /** * @description returns a hash of the contents */ readonly hash: IHash; /** * @description Checks if the value is an empty value */ readonly isEmpty: boolean; /** * @description The length of the value */ readonly length: number; /** * @description Compares the value of the input to see if there is a match */ eq(other?: any): boolean; /** * @description Returns a hex string representation of the value */ toHex(): string; /** * @description Converts the Object to JSON, typically used for RPC transfers */ toJSON(): string; /** * @description Returns the base runtime type name for this instance */ toRawType(): string; /** * @description Returns the string representation of the value */ toString(): string; /** * @description Encodes the value as a Uint8Array as per the SCALE specifications * @param isBare true when the value has none of the type-specific prefixes (internal) */ toU8a(isBare?: boolean): Uint8Array; }