UNPKG

generator-begcode

Version:

Spring Boot + Angular/React/Vue in one handy generator

10 lines (9 loc) 286 B
export declare class Prompt { private readonly _text; constructor(_text?: string); text(text: string): Prompt; block(text: string): Prompt; json<T>(obj: T): Prompt; line(builder: ((prompt: Prompt) => Prompt | string) | string): Prompt; toString(): string; }