lightningdevkit
Version:
Lightning Development Kit
18 lines (17 loc) • 531 B
text/typescript
import { CommonBase } from './CommonBase.mjs';
/**
* A string that displays only printable characters, replacing control characters with
* [`core::char::REPLACEMENT_CHARACTER`].
*/
export declare class PrintableString extends CommonBase {
get_a(): string;
set_a(val: string): void;
/**
* Constructs a new PrintableString given each field
*/
static constructor_new(a_arg: string): PrintableString;
/**
* Get the string representation of a PrintableString object
*/
to_str(): string;
}