Move Utils to src folder
This commit is contained in:
parent
94333c7f0e
commit
5c1c443307
@ -1,6 +1,6 @@
|
||||
import { MathMLTag } from './MathMLTag';
|
||||
import { GenericWrapper } from '../../../../../utils/wrappers';
|
||||
import { JoinWithManySeparators } from '../../../../../utils';
|
||||
import { GenericWrapper } from '../../../../utils/wrappers';
|
||||
import { JoinWithManySeparators } from '../../../../utils';
|
||||
|
||||
export class MFenced extends MathMLTag {
|
||||
private _wrapper: GenericWrapper;
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { MathMLTag } from './MathMLTag';
|
||||
import { InvalidNumberOfChild } from '../../../../errors';
|
||||
import { ParenthesisWrapper } from '../../../../../utils/wrappers';
|
||||
import { ParenthesisWrapper } from '../../../../utils/wrappers';
|
||||
|
||||
export class MFrac extends MathMLTag {
|
||||
constructor(value: string, attributes: Record<string, string>, children: MathMLTag[]) {
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { MathMLTag } from './MathMLTag';
|
||||
import { BracketWrapper, ParenthesisWrapper } from '../../../../../utils/wrappers';
|
||||
import { BracketWrapper, ParenthesisWrapper } from '../../../../utils/wrappers';
|
||||
import { InvalidNumberOfChild } from '../../../../errors';
|
||||
|
||||
export class MSup extends MathMLTag {
|
||||
|
Loading…
Reference in New Issue
Block a user