This commit is contained in:
2022-03-29 22:56:55 -05:00
parent bb50db4dec
commit 97c05f168d

View File

@@ -1,8 +1,8 @@
import { basicObject, basicObjectStringable, embedObject, LangObj } from '../types';
import { convertBasicObject, template } from '../util';
import { embedDataType } from './types';
import { embedObjEmbed } from './util';
import Lang, { getLang } from '..';
import { basicObject, basicObjectStringable, embedObject, LangObj } from './types';
import { convertBasicObject, template } from './util';
import { embedDataType } from './discord/types';
import { embedObjEmbed } from './discord/util';
import Lang, { getLang } from '.';
/**
* reads language json as an object (could be embed or just string)
@@ -57,9 +57,9 @@ function getEmbed(id: string, argsraw: basicObjectStringable = {}, otherOptions:
return embedData;
}
export * from './types';
export * from './util';
export * from '..';
export * from './discord/types';
export * from './discord/util';
export * from '.';
export default {
...Lang,