actions/github/codeql-action-v2/node_modules/ts-poet/build/Literal.d.ts

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;
}