diff --git a/src/parser/classes/FormPopup.ts b/src/parser/classes/FormPopup.ts new file mode 100644 index 00000000..a5a026a1 --- /dev/null +++ b/src/parser/classes/FormPopup.ts @@ -0,0 +1,21 @@ +import { YTNode } from '../helpers.js'; +import { Parser, type RawNode } from '../index.js'; +import { type ObservedArray } from '../helpers.js'; +import Text from './misc/Text.js'; +import Form from './Form.js'; +import Button from './Button.js'; + +export default class FormPopup extends YTNode { + static type = 'FormPopup'; + + title: Text; + form: Form | null; + buttons: ObservedArray