mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-08-13 10:59:26 +02:00
* Standardize filenames to kebab-case Co-authored-by: pymilkmaiden <cassiopeiamahler56@gmail.com> * Move script outside of public folder * Move update_exp_sprites to scripts * Add ls-lint to lint file and directory names * Update lefthook.yml to skip merge / rebase on all pre-commit commands --------- Co-authored-by: pymilkmaiden <cassiopeiamahler56@gmail.com>
7 lines
248 B
TypeScript
7 lines
248 B
TypeScript
import { MockText } from "#test/test-utils/mocks/mocks-container/mock-text";
|
|
|
|
export class MockBBCodeText extends MockText {
|
|
setMaxLines(_lines: number) {}
|
|
setWrapMode(_mode: 0 | 1 | 2 | 3 | "none" | "word" | "char" | "character" | "mix") {}
|
|
}
|