File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ type AnyObject = {[k: string]: any};
44
55type Templates = { [ k in string | 'basic' | 'color' | 'complete' | 'image' ] : MessageEmbedOptions }
66
7- const templates : Templates = {
7+ export const templates : Templates = {
88 basic : {
99 footer : {
1010 text : '${client.user.username}' ,
@@ -33,7 +33,7 @@ const templates: Templates = {
3333 } ,
3434} ;
3535
36- const limits = {
36+ export const limits = {
3737 author : {
3838 name : 256 ,
3939 } ,
@@ -49,7 +49,7 @@ const limits = {
4949 } ,
5050} ;
5151
52- class BetterEmbed extends MessageEmbed {
52+ export class BetterEmbed extends MessageEmbed {
5353 public constructor ( data ?: MessageEmbed | MessageEmbedOptions ) {
5454 super ( data ) ;
5555 this . checkSize ( ) ;
@@ -110,5 +110,3 @@ class BetterEmbed extends MessageEmbed {
110110 }
111111 }
112112}
113-
114- export { BetterEmbed , templates , limits } ;
You can’t perform that action at this time.
0 commit comments