13 lines
186 B
TypeScript
13 lines
186 B
TypeScript
export class Prompt
|
|
{
|
|
constructor (
|
|
public text: string,
|
|
public type: PromptType
|
|
) {}
|
|
}
|
|
|
|
export enum PromptType
|
|
{
|
|
ERROR = "error",
|
|
SUCCESS = "success"
|
|
} |