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