Co-authored-by: Andrew Eisenberg <aeisenberg@github.com> Co-authored-by: Henry Mercer <henrymercer@github.com>
10 lines
267 B
TypeScript
10 lines
267 B
TypeScript
import { Node } from './Node';
|
|
/**
|
|
* A literal source representation of the provided object
|
|
*/
|
|
export declare class Literal extends Node {
|
|
private readonly tokens;
|
|
constructor(object: unknown);
|
|
get childNodes(): unknown[];
|
|
toCodeString(): string;
|
|
}
|